Compare commits

..

1 Commits

Author SHA1 Message Date
Safihre
9ca80e481c Handle Direct Unpack sets before proceeding to unpack the rest 2020-12-12 19:46:03 +01:00
189 changed files with 2795 additions and 6165 deletions

View File

View File

@@ -14,7 +14,6 @@ jobs:
sabnzbd
scripts
tools
builder
tests
--line-length=120
--target-version=py36

View File

@@ -1,114 +0,0 @@
name: Build binaries and source distribution
on: [push, pull_request]
jobs:
build_windows:
name: Build Windows binary
runs-on: windows-latest
env:
AUTOMATION_GITHUB_TOKEN: ${{ secrets.AUTOMATION_GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9 (64bit)
uses: actions/setup-python@v2
with:
python-version: 3.9
architecture: x64
- name: Install Python dependencies (64bit)
run: |
python --version
pip install --upgrade pip wheel
pip install --upgrade -r requirements.txt
pip install --upgrade -r builder/requirements.txt
- name: Build source distribution
run: python builder/package.py source
- name: Upload source distribution
uses: actions/upload-artifact@v2
with:
path: "*-src.tar.gz"
name: Source distribution
- name: Build Windows standalone binary and installer (64bit)
run: python builder/package.py installer
- name: Upload Windows standalone binary (64bit)
uses: actions/upload-artifact@v2
with:
path: "*-win64-bin.zip"
name: Windows Windows standalone binary (64bit)
- name: Upload Windows installer (64bit)
uses: actions/upload-artifact@v2
with:
path: "*-win-setup.exe"
name: Windows installer
- name: Set up Python 3.8 (32bit and legacy)
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x86
- name: Install Python dependencies (32bit and legacy)
run: |
python --version
pip install --upgrade pip wheel
pip install --upgrade -r requirements.txt
pip install --upgrade -r builder/requirements.txt
- name: Build Windows standalone binary (32bit and legacy)
run: python builder/package.py binary
- name: Upload Windows standalone binary (32bit and legacy)
uses: actions/upload-artifact@v2
with:
path: "*-win32-bin.zip"
name: Windows Windows standalone binary (32bit and legacy)
- name: Prepare official release
if: env.AUTOMATION_GITHUB_TOKEN
run: python builder/package.py release
build_macos:
name: Build macOS binary
runs-on: macos-latest
env:
SIGNING_AUTH: ${{ secrets.SIGNING_AUTH }}
NOTARIZATION_USER: ${{ secrets.NOTARIZATION_USER }}
NOTARIZATION_PASS: ${{ secrets.NOTARIZATION_PASS }}
AUTOMATION_GITHUB_TOKEN: ${{ secrets.AUTOMATION_GITHUB_TOKEN }}
# We need the official Python, because the GA ones only support newer macOS versions
# The deployment target is picked up by the Python build tools automatically
# If updated, make sure to also set LSMinimumSystemVersion in SABnzbd.spec
PYTHON_VERSION: 3.9.1
MACOSX_DEPLOYMENT_TARGET: 10.9
steps:
- uses: actions/checkout@v2
- name: Cache Python download
id: cache-python-download
uses: actions/cache@v2
with:
path: ~/python.pkg
key: macOS-Python-${{ env.PYTHON_VERSION }}
- name: Get Python
if: steps.cache-python-download.outputs.cache-hit != 'true'
run: curl https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macosx10.9.pkg -o ~/python.pkg
- name: Install Python
run: sudo installer -pkg ~/python.pkg -target /Applications
- name: Install Python dependencies
run: |
python3 --version
pip3 install --upgrade pip wheel
pip3 install --upgrade -r requirements.txt
pip3 install --upgrade -r builder/requirements.txt
- name: Import macOS codesign certificates
uses: apple-actions/import-codesign-certs@v1
if: env.SIGNING_AUTH
with:
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
- name: Build macOS binary
run: |
python3 builder/package.py app
python3 builder/make_dmg.py
- name: Upload macOS binary
uses: actions/upload-artifact@v2
with:
path: "*-osx.dmg"
name: macOS binary (not notarized)
- name: Prepare official release
if: env.AUTOMATION_GITHUB_TOKEN
run: python3 builder/package.py release

View File

@@ -4,18 +4,16 @@ on: [push, pull_request]
jobs:
test:
name: Test ${{ matrix.name }} - Python ${{ matrix.python-version }}
name: Test ${{ matrix.os }} - Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-20.04]
include:
- name: macOS
os: macos-latest
- os: macos-latest
python-version: 3.9
- name: Windows
os: windows-latest
- os: windows-latest
python-version: 3.9
steps:

View File

@@ -1,5 +1,5 @@
(c) Copyright 2007-2021 by "The SABnzbd-team" <team@sabnzbd.org>
(c) Copyright 2007-2020 by "The SABnzbd-team" <team@sabnzbd.org>
The SABnzbd-team is:

View File

@@ -4,7 +4,7 @@
0) LICENSE
-------------------------------------------------------------------------------
(c) Copyright 2007-2021 by "The SABnzbd-team" <team@sabnzbd.org>
(c) Copyright 2007-2020 by "The SABnzbd-team" <team@sabnzbd.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View File

@@ -14,13 +14,13 @@
For these the server blocking method is not very favourable.
There is an INI-only option that will limit blocks to 1 minute.
no_penalties = 1
See: https://sabnzbd.org/wiki/configuration/3.2/special
See: https://sabnzbd.org/wiki/configuration/3.1/special
- Some third-party utilties try to probe SABnzbd API in such a way that you will
often see warnings about unauthenticated access.
If you are sure these probes are harmless, you can suppress the warnings by
setting the option "api_warnings" to 0.
See: https://sabnzbd.org/wiki/configuration/3.2/special
See: https://sabnzbd.org/wiki/configuration/3.1/special
- On macOS you may encounter downloaded files with foreign characters.
The par2 repair may fail when the files were created on a Windows system.

View File

@@ -1,4 +1,4 @@
(c) Copyright 2007-2021 by "The SABnzbd-team" <team@sabnzbd.org>
(c) Copyright 2007-2020 by "The SABnzbd-team" <team@sabnzbd.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View File

@@ -1,7 +1,7 @@
Metadata-Version: 1.0
Name: SABnzbd
Version: 3.2.0RC1
Summary: SABnzbd-3.2.0RC1
Version: 3.2.0-develop
Summary: SABnzbd-3.2.0-develop
Home-page: https://sabnzbd.org
Author: The SABnzbd Team
Author-email: team@sabnzbd.org

View File

@@ -1,11 +1,11 @@
SABnzbd - The automated Usenet download tool
============================================
![CI tests](https://github.com/sabnzbd/sabnzbd/workflows/CI%20Tests/badge.svg)
![Build binaries](https://github.com/sabnzbd/sabnzbd/workflows/Build%20binaries%20and%20source%20distribution/badge.svg)
[![Travis CI](https://travis-ci.org/sabnzbd/sabnzbd.svg?branch=develop)](https://travis-ci.org/sabnzbd/sabnzbd)
[![AppVeryor](https://ci.appveyor.com/api/projects/status/github/sabnzbd/sabnzbd?svg=true&branch=develop)](https://ci.appveyor.com/project/Safihre/sabnzbd)
[![Snap Status](https://build.snapcraft.io/badge/sabnzbd/sabnzbd.svg)](https://snapcraft.io/sabnzbd)
[![License](https://img.shields.io/badge/license-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
SABnzbd is an Open Source Binary Newsreader written in Python.
It's totally free, easy to use, and works practically everywhere.

View File

@@ -1,66 +1,38 @@
Release Notes - SABnzbd 3.2.0 Release Candidate 1
Release Notes - SABnzbd 3.1.0 Release Candidate 1
=========================================================
## Changes since 3.1.1
- Python 3.6 is the minimum required version.
- The Windows installer can only be used on 64bit Windows 8.1 and
above. For 32bit systems or older Windows versions the
standalone 32bit legacy version can be used.
- Post-processing can be aborted at any stage, including scripts.
- Improvements in the downloader to reduce CPU-load.
- Increased garbage collection rate to reduce memory usage.
- Custom date ranges for server graphs can be selected.
- Keep track of article fetching success-rate of each server.
- Added option to add download quota warning for each server.
- Added option to add expiration waring for each server.
- Added `Minimum Free Space for Completed Download Folder` option.
- Added option to `Auto resume` for both `Minimum Free Space` settings.
- Multiple additional Queue and History columns can be added.
- Added option to always use full screen width.
- Additional interface settings can be stored server-side.
- Using SSDP, SABnzbd instances are now listed in `Network` on Windows.
- Improvements to parsing of job name and filenames listed in the NZB.
- RSS titles can be edited.
- Prospective par2 will add blocks from all sets in a job.
- Sanitize all filenames to a maximum of 245 characters.
- Show commit hash when running from `git` sources.
- Notify through Notifications if new version is available.
- Program shutdown time reduced to almost instant.
- Added `10 GB` test download.
- IPv6 is no longer preferred in HappyEyeballs address selection.
- API-calls `queue` and `history` can now be filtered by `nzo_id`.
- Windows: `Temporary Download` job folders no longer have a maximum length.
- Windows/macOS: Update UnRar to 6.0.0 and MultiPar to 1.3.1.3.
## Changes and bugfixes since 3.1.0 Beta 2
- Deobfuscate final filenames can now be used when job folders are disabled.
- Deobfuscate final filenames will ignore blu-ray disc files.
- Clear error if Complete Folder is set as a subfolder of the Temporary Folder.
- Filtering of history by category would not filter jobs in post-processing.
## Bugfixes since 3.1.1
- Memory could leak after jobs were removed from the queue.
- The active browser URL is used during the wizard.
- Repairing or Retrying jobs could result in a crash.
- API-call `reset_quota` returned nothing.
- New categories were not always forced to lowercase.
- Broken downloads could result in crash during RAR-renaming
- Improved obfuscation detection for `Deobfuscate final filenames`.
- Keep original priority of duplicate jobs.
- Increase Maximum number of connections per server to `1000`.
- Update encryption check to handle partially assembled files.
- Don't activate Windows notifications when running as service.
- Command line option `--console` did not work.
- Crash in API-call to delete history items for non-existing `nzo_id`.
- Prevent repetition of unwanted extension warnings.
- Correct notification category for failed URL fetches.
- Improvements to the `Add NZB` modal window.
- Sort script drop-down list alphabetically.
- Default Bandwidth percentage was not set to `100`.
- Direct Unpack stability fixes.
- macOS: Program shutdown could fail.
- macOS: Tray text was misaligned on macOS 11 (Big Sur).
- Windows: Improved handling of some MultiPar output.
- Windows: Program restart failed.
## Changes since 3.0.2
- Added option to automatically deobfuscate final filenames: after unpacking,
detect and rename obfuscated or meaningless filenames to the job name,
similar to the Deobfuscate.py post-processing script.
- Switched to Transifex as our translations platform:
Help us translate SABnzbd in your language! Add untranslated texts or
improved existing translations here: https://sabnzbd.org/wiki/translate
- Redesigned job availability-check to be more efficient and reliable.
- Skip repair on Retry if all sets were previously successfully verified.
- Passwords included in the filename no longer have to be at the end.
- Restore limit on length of foldernames (`max_foldername_length`).
- Added password input box on the Add NZB screen.
- Show warning that Pyton 3.5 support will be dropped after 3.1.0.
- Windows/macOS: update UnRar to 5.91 and MultiPar to 1.3.1.0.
- Windows: retry `Access Denied` when renaming files on Windows.
## Upgrade notices
- The download statistics file `totals10.sab` is updated in this
version. If you downgrade to 3.1.x or lower, detailed download
statistics will be lost.
## Bugfixes since 3.0.2
- Assembler crashes could occur due to race condition in `ArticleCache`.
- On HTTP-redirects the scheme/hostname/port were ignored when behind a proxy.
- Strip slash of the end of `url_base` as it could break other code.
- Unpacking with a relative folder set for a category could fail.
- Paused priority of pre-queue script was ignored.
- Duplicate Detection did not check filenames in History.
- Downloaded bytes could show as exceeding the total bytes of a job.
- Windows: non-Latin languages were displayed incorrectly in the installer.
- Windows: could fail to create folders on some network shares.
## Known problems and solutions
- Read the file "ISSUES.txt"
@@ -72,4 +44,4 @@ Release Notes - SABnzbd 3.2.0 Release Candidate 1
that automatically verify, repair, extract and clean up posts downloaded
from Usenet.
(c) Copyright 2007-2021 by "The SABnzbd-team" \<team@sabnzbd.org\>
(c) Copyright 2007-2020 by "The SABnzbd-team" \<team@sabnzbd.org\>

View File

@@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2021 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -34,7 +34,6 @@ import subprocess
import ssl
import time
import re
import gc
from typing import List, Dict, Any
try:
@@ -195,7 +194,6 @@ def print_help():
print(" --no-login Start with username and password reset")
print(" --log-all Log all article handling (for developers)")
print(" --disable-file-log Logging is only written to console")
print(" --console Force logging to console")
print(" --new Run a new instance of SABnzbd")
print()
print("NZB (or related) file:")
@@ -209,7 +207,7 @@ def print_version():
"""
%s-%s
Copyright (C) 2007-2021 The SABnzbd-Team <team@sabnzbd.org>
Copyright (C) 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
SABnzbd comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. It is licensed under the
@@ -846,7 +844,6 @@ def main():
cherrypylogging = None
clean_up = False
logging_level = None
console_logging = False
no_file_log = False
web_dir = None
vista_plus = False
@@ -902,8 +899,6 @@ def main():
if logging_level < -1 or logging_level > 2:
print_help()
exit_sab(1)
elif opt == "--console":
console_logging = True
elif opt in ("-v", "--version"):
print_version()
exit_sab(0)
@@ -945,8 +940,8 @@ def main():
sabnzbd.DIR_LANGUAGE = real_path(sabnzbd.DIR_PROG, DEF_LANGUAGE)
org_dir = os.getcwd()
# Need console logging if requested, for SABnzbd.py and SABnzbd-console.exe
console_logging = console_logging or sabnzbd.MY_NAME.lower().find("-console") > 0 or not hasattr(sys, "frozen")
# Need console logging for SABnzbd.py and SABnzbd-console.exe
console_logging = (not hasattr(sys, "frozen")) or (sabnzbd.MY_NAME.lower().find("-console") > 0)
console_logging = console_logging and not sabnzbd.DAEMON
LOGLEVELS = (logging.FATAL, logging.WARNING, logging.INFO, logging.DEBUG)
@@ -1256,7 +1251,7 @@ def main():
sabnzbd.cfg.web_color.set(sabnzbd.WEB_COLOR)
# Handle the several tray icons
if sabnzbd.cfg.win_menu() and not sabnzbd.DAEMON and not sabnzbd.WIN_SERVICE:
if sabnzbd.cfg.win_menu() and not sabnzbd.DAEMON:
if sabnzbd.WIN32:
import sabnzbd.sabtray
@@ -1515,16 +1510,12 @@ def main():
"SABnzbd Team",
"https://sabnzbd.org/",
"SABnzbd %s" % sabnzbd.__version__,
ssdp_broadcast_interval=sabnzbd.cfg.ssdp_broadcast_interval(),
)
# Have to keep this running, otherwise logging will terminate
timer = 0
while not sabnzbd.SABSTOP:
# Wait to be awoken or every 3 seconds
with sabnzbd.SABSTOP_CONDITION:
sabnzbd.SABSTOP_CONDITION.wait(3)
timer += 1
time.sleep(3)
# Check for loglevel changes
if LOG_FLAG:
@@ -1534,15 +1525,9 @@ def main():
if console_logging:
console.setLevel(level)
# 300 sec polling tasks
if not timer % 100:
if sabnzbd.LOG_ALL:
logging.debug("Triggering Python garbage collection")
gc.collect()
timer = 0
# 30 sec polling tasks
if not timer % 10:
if timer > 9:
timer = 0
# Keep OS awake (if needed)
sabnzbd.keep_awake()
# Restart scheduler (if needed)
@@ -1553,42 +1538,48 @@ def main():
if not sabnzbd.check_all_tasks():
autorestarted = True
sabnzbd.TRIGGER_RESTART = True
else:
timer += 1
# 3 sec polling tasks
# Check for auto-restart request
# Or special restart cases like Mac and WindowsService
if sabnzbd.TRIGGER_RESTART:
logging.info("Performing triggered restart")
# Shutdown
sabnzbd.shutdown_program()
# Add arguments and make sure we are in the right directory
if sabnzbd.Downloader.paused:
sabnzbd.RESTART_ARGS.append("-p")
if autorestarted:
sabnzbd.RESTART_ARGS.append("--autorestarted")
sys.argv = sabnzbd.RESTART_ARGS
os.chdir(org_dir)
# Binaries require special restart
if hasattr(sys, "frozen"):
if sabnzbd.DARWIN:
# On macOS restart of app instead of embedded python
my_name = sabnzbd.MY_FULLNAME.replace("/Contents/MacOS/SABnzbd", "")
my_args = " ".join(sys.argv[1:])
cmd = 'kill -9 %s && open "%s" --args %s' % (os.getpid(), my_name, my_args)
logging.info("Launching: %s", cmd)
os.system(cmd)
elif sabnzbd.WIN_SERVICE:
# Use external service handler to do the restart
# Wait 5 seconds to clean up
subprocess.Popen("timeout 5 & sc start SABnzbd", shell=True)
elif sabnzbd.WIN32:
# Just a simple restart of the exe
os.execv(sys.executable, ['"%s"' % arg for arg in sys.argv])
os.chdir(org_dir)
# If macOS frozen restart of app instead of embedded python
if hasattr(sys, "frozen") and sabnzbd.DARWIN:
# [[NSProcessInfo processInfo] processIdentifier]]
# logging.info("%s" % (NSProcessInfo.processInfo().processIdentifier()))
my_pid = os.getpid()
my_name = sabnzbd.MY_FULLNAME.replace("/Contents/MacOS/SABnzbd", "")
my_args = " ".join(sys.argv[1:])
cmd = 'kill -9 %s && open "%s" --args %s' % (my_pid, my_name, my_args)
logging.info("Launching: %s", cmd)
os.system(cmd)
elif sabnzbd.WIN_SERVICE:
# Use external service handler to do the restart
# Wait 5 seconds to clean up
subprocess.Popen("timeout 5 & sc start SABnzbd", shell=True)
else:
# CherryPy has special logic to include interpreter options such as "-OO"
cherrypy.engine._do_execv()
config.save_config()
if sabnzbd.WINTRAY:
sabnzbd.WINTRAY.terminate = True
if sabnzbd.WIN32:
del_connection_info()
# Send our final goodbyes!
notifier.send_notification("SABnzbd", T("SABnzbd shutdown finished"), "startup")
logging.info("Leaving SABnzbd")
@@ -1733,6 +1724,7 @@ if __name__ == "__main__":
main()
elif sabnzbd.DARWIN and sabnzbd.FOUNDATION:
# macOS binary runner
from threading import Thread
from PyObjCTools import AppHelper
@@ -1741,7 +1733,7 @@ if __name__ == "__main__":
# Need to run the main application in separate thread because the eventLoop
# has to be in the main thread. The eventLoop is required for the menu.
# This code is made with trial-and-error, please feel free to improve!
# This code is made with trial-and-error, please improve!
class startApp(Thread):
def run(self):
main()

View File

@@ -1,184 +0,0 @@
# -*- mode: python -*-
import re
import sys
import pkginfo
from PyInstaller.building.api import EXE, COLLECT, PYZ
from PyInstaller.building.build_main import Analysis
from PyInstaller.building.osx import BUNDLE
# Add extra files in the PyInstaller-spec
extra_pyinstaller_files = []
# Also modify these in "package.py"!
extra_files = [
"README.txt",
"INSTALL.txt",
"LICENSE.txt",
"GPL2.txt",
"GPL3.txt",
"COPYRIGHT.txt",
"ISSUES.txt",
"PKG-INFO",
]
extra_folders = [
"scripts/",
"licenses/",
"locale/",
"email/",
"interfaces/Plush/",
"interfaces/Glitter/",
"interfaces/wizard/",
"interfaces/Config/",
"scripts/",
"icons/",
]
# Get the version
RELEASE_VERSION = pkginfo.Develop(".").version
# Add hidden imports
extra_hiddenimports = ["Cheetah.DummyTransaction", "cheroot.ssl.builtin", "certifi"]
# Add platform specific stuff
if sys.platform == "darwin":
extra_hiddenimports.extend(["pyobjc", "objc", "PyObjCTools"])
# macOS folders
extra_folders += ["osx/par2/", "osx/unrar/", "osx/7zip/"]
# Add NZB-icon file
extra_pyinstaller_files.append(("builder/osx/image/nzbfile.icns", "."))
# Version information is set differently on macOS
version_info = None
else:
# Build would fail on non-Windows
from PyInstaller.utils.win32.versioninfo import (
VSVersionInfo,
FixedFileInfo,
StringFileInfo,
StringTable,
StringStruct,
VarFileInfo,
VarStruct,
)
# Windows
extra_hiddenimports.append("win32timezone")
extra_folders += ["win/multipar/", "win/unrar/", "win/7zip/"]
# Parse the version info
version_regexed = re.search(r"(\d+)\.(\d+)\.(\d+)([a-zA-Z]*)(\d*)", RELEASE_VERSION)
version_tuple = (int(version_regexed.group(1)), int(version_regexed.group(2)), int(version_regexed.group(3)), 0)
# Detailed instructions are in the PyInstaller documentation
# We don't include the alpha/beta/rc in the counters
version_info = VSVersionInfo(
ffi=FixedFileInfo(
filevers=version_tuple,
prodvers=version_tuple,
mask=0x3F,
flags=0x0,
OS=0x40004,
fileType=0x1,
subtype=0x0,
date=(0, 0),
),
kids=[
StringFileInfo(
[
StringTable(
"040904B0",
[
StringStruct("Comments", f"SABnzbd {RELEASE_VERSION}"),
StringStruct("CompanyName", "The SABnzbd-Team"),
StringStruct("FileDescription", f"SABnzbd {RELEASE_VERSION}"),
StringStruct("FileVersion", RELEASE_VERSION),
StringStruct("LegalCopyright", "The SABnzbd-Team"),
StringStruct("ProductName", f"SABnzbd {RELEASE_VERSION}"),
StringStruct("ProductVersion", RELEASE_VERSION),
],
)
]
),
VarFileInfo([VarStruct("Translation", [1033, 1200])]),
],
)
# Process the extra-files and folders
for file_item in extra_files:
extra_pyinstaller_files.append((file_item, "."))
for folder_item in extra_folders:
extra_pyinstaller_files.append((folder_item, folder_item))
pyi_analysis = Analysis(
["SABnzbd.py"],
datas=extra_pyinstaller_files,
hiddenimports=extra_hiddenimports,
excludes=["FixTk", "tcl", "tk", "_tkinter", "tkinter", "Tkinter"],
)
pyz = PYZ(pyi_analysis.pure, pyi_analysis.zipped_data)
exe = EXE(
pyz,
pyi_analysis.scripts,
[],
exclude_binaries=True,
name="SABnzbd",
upx=True,
console=False,
append_pkg=False,
icon="icons/sabnzbd.ico",
version=version_info,
)
coll = COLLECT(exe, pyi_analysis.binaries, pyi_analysis.zipfiles, pyi_analysis.datas, name="SABnzbd")
# We need to run again for the console-app
if sys.platform == "win32":
# Enable console=True for this one
console_exe = EXE(
pyz,
pyi_analysis.scripts,
[],
exclude_binaries=True,
name="SABnzbd-console",
upx=True,
append_pkg=False,
icon="icons/sabnzbd.ico",
version=version_info,
)
console_coll = COLLECT(
console_exe,
pyi_analysis.binaries,
pyi_analysis.zipfiles,
pyi_analysis.datas,
upx=True,
name="SABnzbd-console",
)
# Build the APP on macOS
if sys.platform == "darwin":
info_plist = {
"NSUIElement": 1,
"NSPrincipalClass": "NSApplication",
"CFBundleShortVersionString": RELEASE_VERSION,
"NSHumanReadableCopyright": "The SABnzbd-Team",
"CFBundleIdentifier": "org.sabnzbd.sabnzbd",
"CFBundleDocumentTypes": [
{
"CFBundleTypeExtensions": ["nzb"],
"CFBundleTypeIconFile": "nzbfile.icns",
"CFBundleTypeMIMETypes": ["text/nzb"],
"CFBundleTypeName": "NZB File",
"CFBundleTypeRole": "Viewer",
"LSTypeIsPackage": 0,
"NSPersistentStoreTypeKey": "Binary",
}
],
"LSMinimumSystemVersion": "10.9",
"LSEnvironment": {"LANG": "en_US.UTF-8", "LC_ALL": "en_US.UTF-8"},
}
app = BUNDLE(coll, name="SABnzbd.app", icon="builder/osx/image/sabnzbdplus.icns", info_plist=info_plist)

View File

@@ -1,206 +0,0 @@
#!/usr/bin/python3 -OO
# Copyright 2008-2017 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import os
import pkginfo
# We need to call dmgbuild from command-line, so here we can setup how
if __name__ == "__main__":
# Check for DMGBuild
try:
import dmgbuild
except:
print("Requires dmgbuild-module, use pip install dmgbuild")
exit()
# Make sure we are in the src folder
if not os.path.exists("builder"):
raise FileNotFoundError("Run from the main SABnzbd source folder: python builder/package.py")
# Check if signing is possible
authority = os.environ.get("SIGNING_AUTH")
# Extract version info and set DMG path
# Create sub-folder to upload later
release = pkginfo.Develop(".").version
prod = "SABnzbd-" + release
fileDmg = prod + "-osx.dmg"
# Path to app file
apppath = "dist/SABnzbd.app"
# Copy Readme
readmepath = os.path.join(apppath, "Contents/Resources/README.txt")
# Path to background and the icon
backgroundpath = "builder/osx/image/sabnzbd_new_bg.png"
iconpath = "builder/osx/image/sabnzbdplus.icns"
# Make DMG
print("Building DMG")
dmgbuild.build_dmg(
filename=fileDmg,
volume_name=prod,
settings_file="builder/make_dmg.py",
defines={"app": apppath, "readme": readmepath, "background": backgroundpath, "iconpath": iconpath},
)
# Resign APP
if authority:
print("Siging DMG")
os.system('codesign --deep -f -i "org.sabnzbd.SABnzbd" -s "%s" "%s"' % (authority, fileDmg))
print("Signed!")
else:
print("Signing skipped, missing SIGNING_AUTH.")
exit()
### START OF DMGBUILD SETTINGS
### COPIED AND MODIFIED FROM THE EXAMPLE ONLINE
application = defines.get("app", "AppName.app")
readme = defines.get("readme", "ReadMe.rtf")
appname = os.path.basename(application)
# .. Basics ....................................................................
# Volume format (see hdiutil create -help)
format = defines.get("format", "UDBZ")
# Volume size (must be large enough for your files)
size = defines.get("size", "100M")
# Files to include
files = [application, readme]
# Symlinks to create
symlinks = {"Applications": "/Applications"}
# Volume icon
#
# You can either define icon, in which case that icon file will be copied to the
# image, *or* you can define badge_icon, in which case the icon file you specify
# will be used to badge the system's Removable Disk icon
#
badge_icon = defines.get("iconpath", "")
# Where to put the icons
icon_locations = {readme: (70, 160), appname: (295, 220), "Applications": (510, 220)}
# .. Window configuration ......................................................
# Window position in ((x, y), (w, h)) format
window_rect = ((100, 100), (660, 360))
# Background
#
# This is a STRING containing any of the following:
#
# #3344ff - web-style RGB color
# #34f - web-style RGB color, short form (#34f == #3344ff)
# rgb(1,0,0) - RGB color, each value is between 0 and 1
# hsl(120,1,.5) - HSL (hue saturation lightness) color
# hwb(300,0,0) - HWB (hue whiteness blackness) color
# cmyk(0,1,0,0) - CMYK color
# goldenrod - X11/SVG named color
# builtin-arrow - A simple built-in background with a blue arrow
# /foo/bar/baz.png - The path to an image file
#
# Other color components may be expressed either in the range 0 to 1, or
# as percentages (e.g. 60% is equivalent to 0.6).
background = defines.get("background", "builtin-arrow")
show_status_bar = False
show_tab_view = False
show_toolbar = False
show_pathbar = False
show_sidebar = False
sidebar_width = 0
# Select the default view; must be one of
#
# 'icon-view'
# 'list-view'
# 'column-view'
# 'coverflow'
#
default_view = "icon-view"
# General view configuration
show_icon_preview = False
# Set these to True to force inclusion of icon/list view settings (otherwise
# we only include settings for the default view)
include_icon_view_settings = "auto"
include_list_view_settings = "auto"
# .. Icon view configuration ...................................................
arrange_by = None
grid_offset = (0, 0)
grid_spacing = 50
scroll_position = (0, 0)
label_pos = "bottom" # or 'right'
text_size = 16
icon_size = 64
# .. List view configuration ...................................................
# Column names are as follows:
#
# name
# date-modified
# date-created
# date-added
# date-last-opened
# size
# kind
# label
# version
# comments
#
list_icon_size = 16
list_text_size = 12
list_scroll_position = (0, 0)
list_sort_by = "name"
list_use_relative_dates = True
list_calculate_all_sizes = (False,)
list_columns = ("name", "date-modified", "size", "kind", "date-added")
list_column_widths = {
"name": 300,
"date-modified": 181,
"date-created": 181,
"date-added": 181,
"date-last-opened": 181,
"size": 97,
"kind": 115,
"label": 100,
"version": 75,
"comments": 300,
}
list_column_sort_directions = {
"name": "ascending",
"date-modified": "descending",
"date-created": "descending",
"date-added": "descending",
"date-last-opened": "descending",
"size": "descending",
"kind": "ascending",
"label": "ascending",
"version": "ascending",
"comments": "ascending",
}

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>
</plist>

View File

Binary file not shown.

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -1,550 +0,0 @@
#!/usr/bin/python3 -OO
# Copyright 2008-2017 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import glob
import platform
import re
import sys
import os
import time
import shutil
import subprocess
import tarfile
import pkginfo
import github
from distutils.dir_util import copy_tree
VERSION_FILE = "sabnzbd/version.py"
SPEC_FILE = "SABnzbd.spec"
# Also modify these in "SABnzbd.spec"!
extra_files = [
"README.mkd",
"INSTALL.txt",
"LICENSE.txt",
"GPL2.txt",
"GPL3.txt",
"COPYRIGHT.txt",
"ISSUES.txt",
"PKG-INFO",
]
extra_folders = [
"scripts/",
"licenses/",
"locale/",
"email/",
"interfaces/Plush/",
"interfaces/Glitter/",
"interfaces/wizard/",
"interfaces/Config/",
"scripts/",
"icons/",
]
# Support functions
def safe_remove(path):
"""Remove file without erros if the file doesn't exist
Can also handle folders
"""
if os.path.exists(path):
if os.path.isdir(path):
shutil.rmtree(path)
else:
os.remove(path)
def delete_files_glob(name):
""" Delete one file or set of files from wild-card spec """
for f in glob.glob(name):
if os.path.exists(f):
os.remove(f)
def run_external_command(command):
""" Wrapper to ease the use of calling external programs """
process = subprocess.Popen(command, text=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
output, _ = process.communicate()
ret = process.wait()
if output:
print(output)
if ret != 0:
raise RuntimeError("Command returned non-zero exit code %s!" % ret)
return output
def run_git_command(parms):
""" Run git command, raise error if it failed """
return run_external_command(["git"] + parms)
def patch_version_file(release_name):
"""Patch in the Git commit hash, but only when this is
an unmodified checkout
"""
git_output = run_git_command(["log", "-1"])
for line in git_output.split("\n"):
if "commit " in line:
commit = line.split(" ")[1].strip()
break
else:
raise TypeError("Commit hash not found")
with open(VERSION_FILE, "r") as ver:
version_file = ver.read()
version_file = re.sub(r'__baseline__\s*=\s*"[^"]*"', '__baseline__ = "%s"' % commit, version_file)
version_file = re.sub(r'__version__\s*=\s*"[^"]*"', '__version__ = "%s"' % release_name, version_file)
with open(VERSION_FILE, "w") as ver:
ver.write(version_file)
if __name__ == "__main__":
# Was any option supplied?
if len(sys.argv) < 2:
raise TypeError("Please specify what to do")
# Make sure we are in the src folder
if not os.path.exists("builder"):
raise FileNotFoundError("Run from the main SABnzbd source folder: python builder/package.py")
# Extract version info
RELEASE_VERSION = pkginfo.Develop(".").version
# Check if we have the needed certificates
try:
import certifi
except ImportError:
raise FileNotFoundError("Need certifi module")
# Define release name
RELEASE_NAME = "SABnzbd-%s" % RELEASE_VERSION
RELEASE_TITLE = "SABnzbd %s" % RELEASE_VERSION
RELEASE_SRC = RELEASE_NAME + "-src.tar.gz"
RELEASE_BINARY_32 = RELEASE_NAME + "-win32-bin.zip"
RELEASE_BINARY_64 = RELEASE_NAME + "-win64-bin.zip"
RELEASE_INSTALLER = RELEASE_NAME + "-win-setup.exe"
RELEASE_MACOS = RELEASE_NAME + "-osx.dmg"
RELEASE_README = "README.mkd"
# Patch release file
patch_version_file(RELEASE_VERSION)
# To draft a release or not to draft a release?
RELEASE_THIS = "draft release" in run_git_command(["log", "-1", "--pretty=format:%b"])
# Rename release notes file
safe_remove("README.txt")
shutil.copyfile(RELEASE_README, "README.txt")
# Compile translations
if not os.path.exists("locale"):
run_external_command([sys.executable, "tools/make_mo.py"])
# Check again if translations exist, fail otherwise
if not os.path.exists("locale"):
raise FileNotFoundError("Failed to compile language files")
# Make sure we remove any existing build-folders
safe_remove("build")
safe_remove("dist")
safe_remove(RELEASE_NAME)
# Copy the specification
shutil.copyfile("builder/%s" % SPEC_FILE, SPEC_FILE)
if "binary" in sys.argv or "installer" in sys.argv:
# Must be run on Windows
if sys.platform != "win32":
raise RuntimeError("Binary should be created on Windows")
# Check what architecture we are on
RELEASE_BINARY = RELEASE_BINARY_32
if platform.architecture()[0] == "64bit":
RELEASE_BINARY = RELEASE_BINARY_64
# Remove any leftovers
safe_remove(RELEASE_BINARY)
# Run PyInstaller and check output
run_external_command([sys.executable, "-O", "-m", "PyInstaller", "SABnzbd.spec"])
# Use special distutils function to merge the main and console directories
copy_tree("dist/SABnzbd-console", "dist/SABnzbd")
safe_remove("dist/SABnzbd-console")
# Remove unwanted DLL's
delete_files_glob("dist/SABnzbd/api-ms-win*.dll")
delete_files_glob("dist/SABnzbd/mfc140u.dll")
delete_files_glob("dist/SABnzbd/ucrtbase.dll")
# Remove other files we don't need
delete_files_glob("dist/SABnzbd/PKG-INFO")
delete_files_glob("dist/SABnzbd/win32ui.pyd")
delete_files_glob("dist/SABnzbd/winxpgui.pyd")
if "installer" in sys.argv:
# Needs to be run on 64 bit
if RELEASE_BINARY != RELEASE_BINARY_64:
raise RuntimeError("Installer should be created on 64bit Python")
# Compile NSIS translations
safe_remove("NSIS_Installer.nsi")
safe_remove("NSIS_Installer.nsi.tmp")
shutil.copyfile("builder/win/NSIS_Installer.nsi", "NSIS_Installer.nsi")
run_external_command([sys.executable, "tools/make_mo.py", "nsis"])
# Remove 32bit external executables
delete_files_glob("dist/SABnzbd/win/par2/multipar/par2j.exe")
delete_files_glob("dist/SABnzbd/win/unrar/UnRAR.exe")
# Run NSIS to build installer
run_external_command(
[
"makensis.exe",
"/V3",
"/DSAB_PRODUCT=%s" % RELEASE_NAME,
"/DSAB_VERSION=%s" % RELEASE_VERSION,
"/DSAB_FILE=%s" % RELEASE_INSTALLER,
"NSIS_Installer.nsi.tmp",
]
)
# Rename the folder
os.rename("dist/SABnzbd", RELEASE_NAME)
# Create the archive
run_external_command(["win/7zip/7za.exe", "a", RELEASE_BINARY, RELEASE_NAME])
if "app" in sys.argv:
# Must be run on macOS
if sys.platform != "darwin":
raise RuntimeError("App should be created on macOS")
# Who will sign and notarize this?
authority = os.environ.get("SIGNING_AUTH")
notarization_user = os.environ.get("NOTARIZATION_USER")
notarization_pass = os.environ.get("NOTARIZATION_PASS")
# Run PyInstaller and check output
run_external_command([sys.executable, "-O", "-m", "PyInstaller", "SABnzbd.spec"])
# Only continue if we can sign
if authority:
files_to_sign = [
"dist/SABnzbd.app/Contents/MacOS/osx/par2/par2-sl64",
"dist/SABnzbd.app/Contents/MacOS/osx/7zip/7za",
"dist/SABnzbd.app/Contents/MacOS/osx/unrar/unrar",
"dist/SABnzbd.app/Contents/MacOS/SABnzbd",
"dist/SABnzbd.app",
]
for file_to_sign in files_to_sign:
print("Signing %s with hardended runtime" % file_to_sign)
run_external_command(
[
"codesign",
"--deep",
"--force",
"--timestamp",
"--options",
"runtime",
"--entitlements",
"builder/osx/entitlements.plist",
"-i",
"org.sabnzbd.sabnzbd",
"-s",
authority,
file_to_sign,
],
)
print("Signed %s!" % file_to_sign)
# Only notarize for real builds that we want to deploy
if notarization_user and notarization_pass and RELEASE_THIS:
# Prepare zip to upload to notarization service
print("Creating zip to send to Apple notarization service")
# We need to use ditto, otherwise the signature gets lost!
notarization_zip = RELEASE_NAME + ".zip"
run_external_command(
["ditto", "-c", "-k", "--sequesterRsrc", "--keepParent", "dist/SABnzbd.app", notarization_zip]
)
# Upload to Apple
print("Sending zip to Apple notarization service")
upload_process = run_external_command(
[
"xcrun",
"altool",
"--notarize-app",
"-t",
"osx",
"-f",
notarization_zip,
"--primary-bundle-id",
"org.sabnzbd.sabnzbd",
"-u",
notarization_user,
"-p",
notarization_pass,
],
)
# Extract the notarization ID
m = re.match(".*RequestUUID = (.*?)\n", upload_process, re.S)
if not m:
raise RuntimeError("No UUID created")
uuid = m.group(1)
print("Checking notarization of UUID: %s (every 30 seconds)" % uuid)
notarization_in_progress = True
while notarization_in_progress:
time.sleep(30)
check_status = run_external_command(
[
"xcrun",
"altool",
"--notarization-info",
uuid,
"-u",
notarization_user,
"-p",
notarization_pass,
],
)
notarization_in_progress = "Status: in progress" in check_status
# Check if success
if "Status: success" not in check_status:
raise RuntimeError("Failed to notarize..")
# Staple the notarization!
print("Approved! Stapling the result to the app")
run_external_command(["xcrun", "stapler", "staple", "dist/SABnzbd.app"])
elif notarization_user and notarization_pass:
print("Notarization skipped, add 'draft release' to the commit message trigger notarization!")
else:
print("Notarization skipped, NOTARIZATION_USER or NOTARIZATION_PASS missing.")
else:
print("Signing skipped, missing SIGNING_AUTH.")
if "source" in sys.argv:
# Prepare Source distribution package.
# We assume the sources are freshly cloned from the repo
# Make sure all source files are Unix format
src_folder = "srcdist"
safe_remove(src_folder)
os.mkdir(src_folder)
# Remove any leftovers
safe_remove(RELEASE_SRC)
# Add extra files and folders need for source dist
extra_folders.extend(["sabnzbd/", "po/", "linux/", "tools/", "tests/"])
extra_files.extend(["SABnzbd.py", "requirements.txt"])
# Copy all folders and files to the new folder
for source_folder in extra_folders:
copy_tree(source_folder, os.path.join(src_folder, source_folder))
# Copy all files
for source_file in extra_files:
shutil.copyfile(source_file, os.path.join(src_folder, source_file))
# Make sure all line-endings are correct
for input_filename in glob.glob("%s/**/*.*" % src_folder, recursive=True):
base, ext = os.path.splitext(input_filename)
if ext.lower() not in (".py", ".txt", ".css", ".js", ".tmpl", ".sh", ".cmd"):
continue
print(input_filename)
with open(input_filename, "rb") as input_data:
data = input_data.read()
data = data.replace(b"\r", b"")
with open(input_filename, "wb") as output_data:
output_data.write(data)
# Create tar.gz file for source distro
with tarfile.open(RELEASE_SRC, "w:gz") as tar_output:
for root, dirs, files in os.walk(src_folder):
for _file in files:
input_path = os.path.join(root, _file)
if sys.platform == "win32":
tar_path = input_path.replace("srcdist\\", RELEASE_NAME + "/").replace("\\", "/")
else:
tar_path = input_path.replace("srcdist/", RELEASE_NAME + "/")
tarinfo = tar_output.gettarinfo(input_path, tar_path)
tarinfo.uid = 0
tarinfo.gid = 0
if _file in ("SABnzbd.py", "Sample-PostProc.sh", "make_mo.py", "msgfmt.py"):
# Force Linux/OSX scripts as executable
tarinfo.mode = 0o755
else:
tarinfo.mode = 0o644
with open(input_path, "rb") as f:
tar_output.addfile(tarinfo, f)
# Remove source folder
safe_remove(src_folder)
# Release to github
if "release" in sys.argv:
# Check if tagged as release and check for token
gh_token = os.environ.get("AUTOMATION_GITHUB_TOKEN", "")
if RELEASE_THIS and gh_token:
gh_obj = github.Github(gh_token)
gh_repo = gh_obj.get_repo("sabnzbd/sabnzbd")
# Read the release notes
with open(RELEASE_README, "r") as readme_file:
readme_data = readme_file.read()
# Pre-releases are longer than 6 characters (e.g. 3.1.0Beta1 vs 3.1.0, but also 3.0.11)
prerelease = len(RELEASE_VERSION) > 5
# We have to manually check if we already created this release
for release in gh_repo.get_releases():
if release.tag_name == RELEASE_VERSION:
gh_release = release
print("Found existing release %s" % gh_release.title)
break
else:
# Did not find it, so create the release, use the GitHub tag we got as input
print("Creating GitHub release SABnzbd %s" % RELEASE_VERSION)
gh_release = gh_repo.create_git_release(
tag=RELEASE_VERSION,
name=RELEASE_TITLE,
message=readme_data,
draft=True,
prerelease=prerelease,
)
# Fetch existing assets, as overwriting is not allowed by GitHub
gh_assets = gh_release.get_assets()
# Upload the assets
files_to_check = (
RELEASE_SRC,
RELEASE_BINARY_32,
RELEASE_BINARY_64,
RELEASE_INSTALLER,
RELEASE_MACOS,
RELEASE_README,
)
for file_to_check in files_to_check:
if os.path.exists(file_to_check):
# Check if this file was previously uploaded
if gh_assets.totalCount:
for gh_asset in gh_assets:
if gh_asset.name == file_to_check:
print("Removing existing asset %s " % gh_asset.name)
gh_asset.delete_asset()
# Upload the new one
print("Uploading %s to release %s" % (file_to_check, gh_release.title))
gh_release.upload_asset(file_to_check)
# Update the website
gh_repo_web = gh_obj.get_repo("sabnzbd/sabnzbd.github.io")
# Check if the branch already exists, only create one if it doesn't
skip_website_update = False
try:
gh_repo_web.get_branch(RELEASE_VERSION)
print("Branch %s on sabnzbd/sabnzbd.github.io already exists, skipping update" % RELEASE_VERSION)
skip_website_update = True
except github.GithubException:
# Create a new branch to have the changes
sb = gh_repo_web.get_branch("master")
print("Creating branch %s on sabnzbd/sabnzbd.github.io" % RELEASE_VERSION)
new_branch = gh_repo_web.create_git_ref(ref="refs/heads/" + RELEASE_VERSION, sha=sb.commit.sha)
# Update the files
if not skip_website_update:
# We need bytes version to interact with GitHub
RELEASE_VERSION_BYTES = RELEASE_VERSION.encode()
# Get all the version files
latest_txt = gh_repo_web.get_contents("latest.txt")
latest_txt_items = latest_txt.decoded_content.split()
new_latest_txt_items = latest_txt_items[:2]
config_yml = gh_repo_web.get_contents("_config.yml")
if prerelease:
# If it's a pre-release, we append to current version in latest.txt
new_latest_txt_items.extend([RELEASE_VERSION_BYTES, latest_txt_items[1]])
# And replace in _config.yml
new_config_yml = re.sub(
b"latest_testing: '[^']*'",
b"latest_testing: '%s'" % RELEASE_VERSION_BYTES,
config_yml.decoded_content,
)
else:
# New stable release, replace the version
new_latest_txt_items[0] = RELEASE_VERSION_BYTES
# And replace in _config.yml
new_config_yml = re.sub(
b"latest_testing: '[^']*'",
b"latest_testing: ''",
config_yml.decoded_content,
)
new_config_yml = re.sub(
b"latest_stable: '[^']*'",
b"latest_stable: '%s'" % RELEASE_VERSION_BYTES,
new_config_yml,
)
# Also update the wiki-settings, these only use x.x notation
new_config_yml = re.sub(
b"wiki_version: '[^']*'",
b"wiki_version: '%s'" % RELEASE_VERSION_BYTES[:3],
new_config_yml,
)
# Update the files
print("Updating latest.txt")
gh_repo_web.update_file(
"latest.txt",
"Release %s: latest.txt" % RELEASE_VERSION,
b"\n".join(new_latest_txt_items),
latest_txt.sha,
RELEASE_VERSION,
)
print("Updating _config.yml")
gh_repo_web.update_file(
"_config.yml",
"Release %s: _config.yml" % RELEASE_VERSION,
new_config_yml,
config_yml.sha,
RELEASE_VERSION,
)
# Create pull-request
print("Creating pull request in sabnzbd/sabnzbd.github.io for the update")
gh_repo_web.create_pull(
title=RELEASE_VERSION,
base="master",
body="Automated update of release files",
head=RELEASE_VERSION,
)
else:
print("To push release to GitHub, add 'draft release' to the commit message.")
print("Or missing the AUTOMATION_GITHUB_TOKEN, cannot push to GitHub without it.")
# Reset!
run_git_command(["reset", "--hard"])
run_git_command(["clean", "-f"])

View File

@@ -1,9 +0,0 @@
# Basic build requirements
pyinstaller
setuptools
pkginfo
certifi
pygithub
# For the OSX build specific
dmgbuild; sys_platform == 'darwin'

View File

@@ -1,405 +0,0 @@
; -*- coding: utf-8 -*-
;
; Copyright 2008-2015 The SABnzbd-Team <team@sabnzbd.org>
;
; This program is free software; you can redistribute it and/or
; modify it under the terms of the GNU General Public License
; as published by the Free Software Foundation; either version 2
; of the License, or (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Unicode true
!addplugindir builder\win\nsis\Plugins
!addincludedir builder\win\nsis\Include
!include "MUI2.nsh"
!include "registerExtension.nsh"
!include "FileFunc.nsh"
!include "LogicLib.nsh"
!include "WinVer.nsh"
!include "nsProcess.nsh"
!include "x64.nsh"
!include "servicelib.nsh"
;------------------------------------------------------------------
;
; Marco for removing existing and the current installation
; It shared by the installer and the uninstaller.
;
!define RemovePrev "!insertmacro RemovePrev"
!macro RemovePrev idir
; Remove the whole dir
; Users should not be putting stuff here!
RMDir /r "${idir}"
!macroend
;------------------------------------------------------------------
; Define names of the product
Name "${SAB_PRODUCT}"
OutFile "${SAB_FILE}"
InstallDir "$PROGRAMFILES\SABnzbd"
;------------------------------------------------------------------
; Some default compiler settings (uncomment and change at will):
SetCompress auto ; (can be off or force)
SetDatablockOptimize on ; (can be off)
CRCCheck on ; (can be off)
AutoCloseWindow false ; (can be true for the window go away automatically at end)
ShowInstDetails hide ; (can be show to have them shown, or nevershow to disable)
SetDateSave off ; (can be on to have files restored to their orginal date)
WindowIcon on
SpaceTexts none
;------------------------------------------------------------------
; Vista/Win7 redirects $SMPROGRAMS to all users without this
RequestExecutionLevel admin
FileErrorText "If you have no admin rights, try to install into a user directory."
;------------------------------------------------------------------
;Variables
Var MUI_TEMP
Var STARTMENU_FOLDER
Var PREV_INST_DIR
;------------------------------------------------------------------
;Interface Settings
!define MUI_ABORTWARNING
;Show all languages, despite user's codepage
!define MUI_LANGDLL_ALLLANGUAGES
!define MUI_ICON "dist\SABnzbd\icons\sabnzbd.ico"
;--------------------------------
;Pages
!insertmacro MUI_PAGE_LICENSE "dist\SABnzbd\LICENSE.txt"
!define MUI_COMPONENTSPAGE_NODESC
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
;Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\SABnzbd"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "SABnzbd"
;Remember the installer language
!define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
!define MUI_LANGDLL_REGISTRY_KEY "Software\SABnzbd"
!define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
!insertmacro MUI_PAGE_INSTFILES
; !define MUI_FINISHPAGE_RUN
; !define MUI_FINISHPAGE_RUN_FUNCTION PageFinishRun
; !define MUI_FINISHPAGE_RUN_TEXT $(MsgRunSAB)
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\README.txt"
!define MUI_FINISHPAGE_SHOWREADME_TEXT $(MsgShowRelNote)
!define MUI_FINISHPAGE_LINK $(MsgSupportUs)
!define MUI_FINISHPAGE_LINK_LOCATION "https://sabnzbd.org/donate"
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!define MUI_UNPAGE_COMPONENTSPAGE_NODESC
!insertmacro MUI_UNPAGE_COMPONENTS
!insertmacro MUI_UNPAGE_INSTFILES
;------------------------------------------------------------------
; Run as user-level at end of install
; DOES NOT WORK
; Function PageFinishRun
; !insertmacro UAC_AsUser_ExecShell "" "$INSTDIR\SABnzbd.exe" "" "" ""
; FunctionEnd
;------------------------------------------------------------------
; Set supported languages
;
; If you edit this list you also need to edit apireg.py in SABnzbd!
;
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Dutch"
!insertmacro MUI_LANGUAGE "Finnish"
!insertmacro MUI_LANGUAGE "Polish"
!insertmacro MUI_LANGUAGE "Swedish"
!insertmacro MUI_LANGUAGE "Danish"
!insertmacro MUI_LANGUAGE "Norwegian"
!insertmacro MUI_LANGUAGE "Romanian"
!insertmacro MUI_LANGUAGE "Spanish"
!insertmacro MUI_LANGUAGE "PortugueseBR"
!insertmacro MUI_LANGUAGE "Serbian"
!insertmacro MUI_LANGUAGE "Hebrew"
!insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "SimpChinese"
;------------------------------------------------------------------
;Reserve Files
;If you are using solid compression, files that are required before
;the actual installation should be stored first in the data block,
;because this will make your installer start faster.
!insertmacro MUI_RESERVEFILE_LANGDLL
;------------------------------------------------------------------
; SECTION main program
;
Section "SABnzbd" SecDummy
SetOutPath "$INSTDIR"
;------------------------------------------------------------------
; Make sure old versions are gone (reg-key already read in onInt)
StrCmp $PREV_INST_DIR "" noPrevInstallRemove
${RemovePrev} "$PREV_INST_DIR"
noPrevInstallRemove:
; add files / whatever that need to be installed here.
File /r "dist\SABnzbd\*"
;------------------------------------------------------------------
; Add firewall rules
liteFirewallW::AddRule "$INSTDIR\SABnzbd.exe" "SABnzbd"
liteFirewallW::AddRule "$INSTDIR\SABnzbd-console.exe" "SABnzbd-console"
;------------------------------------------------------------------
; Add to registery
WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\SABnzbd" "" "$INSTDIR"
WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\SABnzbd" "Installer Language" "$(MsgLangCode)"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "DisplayName" "SABnzbd ${SAB_VERSION}"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "DisplayVersion" '${SAB_VERSION}'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "Publisher" 'The SABnzbd Team'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "HelpLink" 'https://forums.sabnzbd.org/'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "URLInfoAbout" 'https://sabnzbd.org/wiki/'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "URLUpdateInfo" 'https://sabnzbd.org/'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "Comments" 'The automated Usenet download tool'
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "DisplayIcon" '$INSTDIR\icons\sabnzbd.ico'
WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "EstimatedSize" 25674
WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "NoRepair" -1
WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd" "NoModify" -1
; write out uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
;Create shortcuts
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\SABnzbd.lnk" "$INSTDIR\SABnzbd.exe"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\SABnzbd - SafeMode.lnk" "$INSTDIR\SABnzbd.exe" "--server 127.0.0.1:8080 -b1 --no-login"
WriteINIStr "$SMPROGRAMS\$STARTMENU_FOLDER\SABnzbd - Documentation.url" "InternetShortcut" "URL" "https://sabnzbd.org/wiki/"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
!insertmacro MUI_STARTMENU_WRITE_END
SectionEnd ; end of default section
Section $(MsgIcon) desktop
CreateShortCut "$DESKTOP\SABnzbd.lnk" "$INSTDIR\SABnzbd.exe"
SectionEnd ; end of desktop icon section
Section $(MsgAssoc) assoc
${registerExtension} "$INSTDIR\icons\nzb.ico" "$INSTDIR\SABnzbd.exe" ".nzb" "NZB File"
${RefreshShellIcons}
SectionEnd ; end of file association section
Section /o $(MsgRunAtStart) startup
CreateShortCut "$SMPROGRAMS\Startup\SABnzbd.lnk" "$INSTDIR\SABnzbd.exe" "-b0"
SectionEnd ;
;------------------------------------------------------------------
Function .onInit
; We need to modify the dir here for X64
${If} ${RunningX64}
StrCpy $INSTDIR "$PROGRAMFILES64\SABnzbd"
${Else}
MessageBox MB_OK $(MsgOnly64bit)
ExecShell "open" "https://sabnzbd.org/downloads"
Abort
${EndIf}
; Python 3.9 no longer supports Windows 7
${If} ${AtMostWin8}
MessageBox MB_OK $(MsgNoWin7)
ExecShell "open" "https://sabnzbd.org/downloads"
Abort
${EndIf}
;------------------------------------------------------------------
; Change settings based on if SAB was already installed
ReadRegStr $PREV_INST_DIR HKEY_LOCAL_MACHINE "SOFTWARE\SABnzbd" ""
StrCmp $PREV_INST_DIR "" noPrevInstall
; We want to use the user's costom dir if he used one
StrCmp $PREV_INST_DIR "$PROGRAMFILES\SABnzbd" noSpecialDir
StrCmp $PREV_INST_DIR "$PROGRAMFILES64\SABnzbd" noSpecialDir
; Set what the user had before
StrCpy $INSTDIR "$PREV_INST_DIR"
noSpecialDir:
;------------------------------------------------------------------
; Check what the user has currently set for install options
IfFileExists "$SMPROGRAMS\Startup\SABnzbd.lnk" 0 endCheckStartup
SectionSetFlags ${startup} 1
endCheckStartup:
IfFileExists "$DESKTOP\SABnzbd.lnk" endCheckDesktop 0
SectionSetFlags ${desktop} 0 ; SAB is installed but desktop-icon not, so uncheck it
endCheckDesktop:
Push $1
ReadRegStr $1 HKCR ".nzb" "" ; read current file association
StrCmp "$1" "NZB File" noPrevInstall 0
SectionSetFlags ${assoc} 0 ; Uncheck it when it wasn't checked before
noPrevInstall:
;--------------------------------
; Display language chooser
!insertmacro MUI_LANGDLL_DISPLAY
;------------------------------------------------------------------
; make sure user terminates sabnzbd.exe or else abort
;
loop:
${nsProcess::FindProcess} "SABnzbd.exe" $R0
StrCmp $R0 0 0 endcheck
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION $(MsgCloseSab) IDOK loop IDCANCEL exitinstall
exitinstall:
${nsProcess::Unload}
Abort
endcheck:
;------------------------------------------------------------------
; make sure both services aren't running
;
!insertmacro SERVICE "running" "SABnzbd" ""
Pop $0 ;response
!insertmacro SERVICE "running" "SABHelper" ""
Pop $1
${If} $0 == true
${OrIf} $1 == true
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION $(MsgCloseSab) IDOK loop IDCANCEL exitinstall
; exitinstall already defined above
${EndIf}
;------------------------------------------------------------------
; Tell users about the service change
;
!insertmacro SERVICE "installed" "SABHelper" ""
Pop $0 ;response
${If} $0 == true
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION $(MsgServChange) IDOK removeservices IDCANCEL exitinstall
; exitinstall already defined above
removeservices:
!insertmacro SERVICE "delete" "SABHelper" ""
!insertmacro SERVICE "delete" "SABnzbd" ""
${EndIf}
FunctionEnd
;------------------------------------------------------------------
; Show the shortcuts at end of install so user can start SABnzbd
; This is instead of us trying to run SAB from the installer
;
Function .onInstSuccess
ExecShell "open" "$SMPROGRAMS\$STARTMENU_FOLDER"
FunctionEnd
;--------------------------------
; begin uninstall settings/section
UninstallText $(MsgUninstall)
Section "un.$(MsgDelProgram)" Uninstall
;make sure sabnzbd.exe isnt running..if so shut it down
${nsProcess::KillProcess} "SABnzbd.exe" $R0
${nsProcess::Unload}
DetailPrint "Process Killed"
; add delete commands to delete whatever files/registry keys/etc you installed here.
Delete "$INSTDIR\uninstall.exe"
DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\SABnzbd"
DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SABnzbd"
${RemovePrev} "$INSTDIR"
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
Delete "$SMPROGRAMS\$MUI_TEMP\SABnzbd.lnk"
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
Delete "$SMPROGRAMS\$MUI_TEMP\SABnzbd - SafeMode.lnk"
Delete "$SMPROGRAMS\$MUI_TEMP\SABnzbd - Documentation.url"
RMDir "$SMPROGRAMS\$MUI_TEMP"
Delete "$SMPROGRAMS\Startup\SABnzbd.lnk"
Delete "$DESKTOP\SABnzbd.lnk"
DeleteRegKey HKEY_CURRENT_USER "Software\SABnzbd"
${unregisterExtension} ".nzb" "NZB File"
${RefreshShellIcons}
SectionEnd ; end of uninstall section
Section /o "un.$(MsgDelSettings)" DelSettings
DetailPrint "Uninstall settings $LOCALAPPDATA"
Delete "$LOCALAPPDATA\sabnzbd\sabnzbd.ini"
RMDir /r "$LOCALAPPDATA\sabnzbd"
SectionEnd
; eof
;--------------------------------
;Language strings
LangString MsgShowRelNote ${LANG_ENGLISH} "Show Release Notes"
LangString MsgSupportUs ${LANG_ENGLISH} "Support the project, Donate!"
LangString MsgCloseSab ${LANG_ENGLISH} "Please close $\"SABnzbd.exe$\" first"
LangString MsgServChange ${LANG_ENGLISH} "The SABnzbd Windows Service changed in SABnzbd 3.0.0. $\nYou will need to reinstall the SABnzbd service. $\n$\nClick `OK` to remove the existing services or `Cancel` to cancel this upgrade."
LangString MsgOnly64bit ${LANG_ENGLISH} "The installer only supports 64-bit Windows, use the standalone version to run on 32-bit Windows."
LangString MsgNoWin7 ${LANG_ENGLISH} "The installer only supports Windows 8.1 and above, use the standalone legacy version to run on older Windows version."
LangString MsgUninstall ${LANG_ENGLISH} "This will uninstall SABnzbd from your system"
LangString MsgRunAtStart ${LANG_ENGLISH} "Run at startup"
LangString MsgIcon ${LANG_ENGLISH} "Desktop Icon"
LangString MsgAssoc ${LANG_ENGLISH} "NZB File association"
LangString MsgDelProgram ${LANG_ENGLISH} "Delete Program"
LangString MsgDelSettings ${LANG_ENGLISH} "Delete Settings"
LangString MsgRemoveOld ${LANG_ENGLISH} "You cannot overwrite an existing installation. $\n$\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
LangString MsgRemoveOld2 ${LANG_ENGLISH} "Your settings and data will be preserved."
LangString MsgLangCode ${LANG_ENGLISH} "en"
Function un.onInit
!insertmacro MUI_UNGETLANGUAGE
FunctionEnd

View File

@@ -1,28 +0,0 @@
!define nsProcess::FindProcess `!insertmacro nsProcess::FindProcess`
!macro nsProcess::FindProcess _FILE _ERR
nsProcess::_FindProcess /NOUNLOAD `${_FILE}`
Pop ${_ERR}
!macroend
!define nsProcess::KillProcess `!insertmacro nsProcess::KillProcess`
!macro nsProcess::KillProcess _FILE _ERR
nsProcess::_KillProcess /NOUNLOAD `${_FILE}`
Pop ${_ERR}
!macroend
!define nsProcess::CloseProcess `!insertmacro nsProcess::CloseProcess`
!macro nsProcess::CloseProcess _FILE _ERR
nsProcess::_CloseProcess /NOUNLOAD `${_FILE}`
Pop ${_ERR}
!macroend
!define nsProcess::Unload `!insertmacro nsProcess::Unload`
!macro nsProcess::Unload
nsProcess::_Unload
!macroend

View File

@@ -1,53 +0,0 @@
!define registerExtension "!insertmacro registerExtension"
!define unregisterExtension "!insertmacro unregisterExtension"
!define SHCNE_ASSOCCHANGED 0x8000000
!define SHCNF_IDLIST 0
; Source = http://nsis.sourceforge.net/File_Association
; Patched for SABnzbd by swi-tch
!macro registerExtension icon executable extension description
Push "${icon}" ; "full path to icon.ico"
Push "${executable}" ; "full path to my.exe"
Push "${extension}" ; ".mkv"
Push "${description}" ; "MKV File"
Call registerExtension
!macroend
; back up old value of .opt
Function registerExtension
!define Index "Line${__LINE__}"
pop $R0 ; ext name
pop $R1
pop $R2
pop $R3
push $1
push $0
DeleteRegKey HKEY_CURRENT_USER "Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\$R1"
WriteRegStr HKCR $R1 "" $R0
WriteRegStr HKCR $R0 "" $R0
WriteRegStr HKCR "$R0\shell" "" "open"
WriteRegStr HKCR "$R0\DefaultIcon" "" "$R3,0"
WriteRegStr HKCR "$R0\shell\open\command" "" '"$R2" "%1"'
WriteRegStr HKCR "$R0\shell\edit" "" "Edit $R0"
WriteRegStr HKCR "$R0\shell\edit\command" "" '"$R2" "%1"'
pop $0
pop $1
!undef Index
System::Call 'Shell32::SHChangeNotify(i ${SHCNE_ASSOCCHANGED}, i ${SHCNF_IDLIST}, i 0, i 0)'
FunctionEnd
!macro unregisterExtension extension description
Push "${extension}" ; ".mkv"
Push "${description}" ; "MKV File"
Call un.unregisterExtension
!macroend
Function un.unregisterExtension
pop $R1 ; description
pop $R0 ; extension
!define Index "Line${__LINE__}"
DeleteRegKey HKCR $R0
!undef Index
System::Call 'Shell32::SHChangeNotify(i ${SHCNE_ASSOCCHANGED}, i ${SHCNF_IDLIST}, i 0, i 0)'
FunctionEnd

View File

@@ -1,411 +0,0 @@
; NSIS SERVICE LIBRARY - servicelib.nsh
; Version 1.8.1 - Jun 21th, 2013
; Questions/Comments - dselkirk@hotmail.com
;
; Description:
; Provides an interface to window services
;
; Inputs:
; action - systemlib action ie. create, delete, start, stop, pause,
; continue, installed, running, status
; name - name of service to manipulate
; param - action parameters; usage: var1=value1;var2=value2;...etc.
; (don't forget to add a ';' after the last value!)
;
; Actions:
; create - creates a new windows service
; Parameters:
; path - path to service executable
; autostart - automatically start with system ie. 1|0
; interact - interact with the desktop ie. 1|0
; depend - service dependencies
; user - user that runs the service
; password - password of the above user
; display - display name in service's console
; description - Description of service
; starttype - start type (supersedes autostart)
; servicetype - service type (supersedes interact)
;
; delete - deletes a windows service
; start - start a stopped windows service
; stop - stops a running windows service
; pause - pauses a running windows service
; continue - continues a paused windows service
; installed - is the provided service installed
; Parameters:
; action - if true then invokes the specified action
; running - is the provided service running
; Parameters:
; action - if true then invokes the specified action
; status - check the status of the provided service
;
; Usage:
; Method 1:
; Push "action"
; Push "name"
; Push "param"
; Call Service
; Pop $0 ;response
;
; Method 2:
; !insertmacro SERVICE "action" "name" "param"
;
; History:
; 1.0 - 09/15/2003 - Initial release
; 1.1 - 09/16/2003 - Changed &l to i, thx brainsucker
; 1.2 - 02/29/2004 - Fixed documentation.
; 1.3 - 01/05/2006 - Fixed interactive flag and pop order (Kichik)
; 1.4 - 12/07/2006 - Added display and depend, fixed datatypes (Vitoco)
; 1.5 - 06/25/2008 - Added description of service.(DeSafe.com/liuqixing#gmail.com)
; 1.5.1 - 06/12/2009 - Added use of __UNINSTALL__
; 1.6 - 08/02/2010 - Fixed description implementation (Anders)
; 1.7 - 04/11/2010 - Added get running service process id (Nico)
; 1.8 - 24/03/2011 - Added starttype and servicetype (Sergius)
; 1.8.1 - 21/06/2013 - Added dynamic ASCII & Unicode support (Zinthose)
!ifndef SERVICELIB
!define SERVICELIB
!define SC_MANAGER_ALL_ACCESS 0x3F
!define SC_STATUS_PROCESS_INFO 0x0
!define SERVICE_ALL_ACCESS 0xF01FF
!define SERVICE_CONTROL_STOP 1
!define SERVICE_CONTROL_PAUSE 2
!define SERVICE_CONTROL_CONTINUE 3
!define SERVICE_STOPPED 0x1
!define SERVICE_START_PENDING 0x2
!define SERVICE_STOP_PENDING 0x3
!define SERVICE_RUNNING 0x4
!define SERVICE_CONTINUE_PENDING 0x5
!define SERVICE_PAUSE_PENDING 0x6
!define SERVICE_PAUSED 0x7
!define SERVICE_KERNEL_DRIVER 0x00000001
!define SERVICE_FILE_SYSTEM_DRIVER 0x00000002
!define SERVICE_WIN32_OWN_PROCESS 0x00000010
!define SERVICE_WIN32_SHARE_PROCESS 0x00000020
!define SERVICE_INTERACTIVE_PROCESS 0x00000100
!define SERVICE_BOOT_START 0x00000000
!define SERVICE_SYSTEM_START 0x00000001
!define SERVICE_AUTO_START 0x00000002
!define SERVICE_DEMAND_START 0x00000003
!define SERVICE_DISABLED 0x00000004
## Added by Zinthose for Native Unicode Support
!ifdef NSIS_UNICODE
!define APITAG "W"
!else
!define APITAG "A"
!endif
!macro SERVICE ACTION NAME PARAM
Push '${ACTION}'
Push '${NAME}'
Push '${PARAM}'
!ifdef __UNINSTALL__
Call un.Service
!else
Call Service
!endif
!macroend
!macro FUNC_GETPARAM
Push $0
Push $1
Push $2
Push $3
Push $4
Push $5
Push $6
Push $7
Exch 8
Pop $1 ;name
Exch 8
Pop $2 ;source
StrCpy $0 ""
StrLen $7 $2
StrCpy $3 0
lbl_loop:
IntCmp $3 $7 0 0 lbl_done
StrLen $4 "$1="
StrCpy $5 $2 $4 $3
StrCmp $5 "$1=" 0 lbl_next
IntOp $5 $3 + $4
StrCpy $3 $5
lbl_loop2:
IntCmp $3 $7 0 0 lbl_done
StrCpy $6 $2 1 $3
StrCmp $6 ";" 0 lbl_next2
IntOp $6 $3 - $5
StrCpy $0 $2 $6 $5
Goto lbl_done
lbl_next2:
IntOp $3 $3 + 1
Goto lbl_loop2
lbl_next:
IntOp $3 $3 + 1
Goto lbl_loop
lbl_done:
Pop $5
Pop $4
Pop $3
Pop $2
Pop $1
Exch 2
Pop $6
Pop $7
Exch $0
!macroend
!macro CALL_GETPARAM VAR NAME DEFAULT LABEL
Push $1
Push ${NAME}
Call ${UN}GETPARAM
Pop $6
StrCpy ${VAR} "${DEFAULT}"
StrCmp $6 "" "${LABEL}" 0
StrCpy ${VAR} $6
!macroend
!macro FUNC_SERVICE UN
Push $0
Push $1
Push $2
Push $3
Push $4
Push $5
Push $6
Push $7
Exch 8
Pop $1 ;param
Exch 8
Pop $2 ;name
Exch 8
Pop $3 ;action
;$0 return
;$4 OpenSCManager
;$5 OpenService
StrCpy $0 "false"
System::Call 'advapi32::OpenSCManager${APITAG}(n, n, i ${SC_MANAGER_ALL_ACCESS}) i.r4'
IntCmp $4 0 lbl_done
StrCmp $3 "create" lbl_create
System::Call 'advapi32::OpenService${APITAG}(i r4, t r2, i ${SERVICE_ALL_ACCESS}) i.r5'
IntCmp $5 0 lbl_done
lbl_select:
StrCmp $3 "delete" lbl_delete
StrCmp $3 "start" lbl_start
StrCmp $3 "stop" lbl_stop
StrCmp $3 "pause" lbl_pause
StrCmp $3 "continue" lbl_continue
StrCmp $3 "installed" lbl_installed
StrCmp $3 "running" lbl_running
StrCmp $3 "status" lbl_status
StrCmp $3 "processid" lbl_processid
Goto lbl_done
; create service
lbl_create:
Push $R1 ;depend
Push $R2 ;user
Push $R3 ;password
Push $R4 ;servicetype/interact
Push $R5 ;starttype/autostart
Push $R6 ;path
Push $R7 ;display
Push $R8 ;description
!insertmacro CALL_GETPARAM $R1 "depend" "n" "lbl_depend"
StrCpy $R1 't "$R1"'
lbl_depend:
StrCmp $R1 "n" 0 lbl_machine ;old name of depend param
!insertmacro CALL_GETPARAM $R1 "machine" "n" "lbl_machine"
StrCpy $R1 't "$R1"'
lbl_machine:
!insertmacro CALL_GETPARAM $R2 "user" "n" "lbl_user"
StrCpy $R2 't "$R2"'
lbl_user:
!insertmacro CALL_GETPARAM $R3 "password" "n" "lbl_password"
StrCpy $R3 't "$R3"'
lbl_password:
!insertmacro CALL_GETPARAM $R4 "interact" "${SERVICE_WIN32_OWN_PROCESS}" "lbl_interact"
StrCpy $6 ${SERVICE_WIN32_OWN_PROCESS}
IntCmp $R4 0 +2
IntOp $6 $6 | ${SERVICE_INTERACTIVE_PROCESS}
StrCpy $R4 $6
lbl_interact:
!insertmacro CALL_GETPARAM $R4 "servicetype" "$R4" "lbl_servicetype"
lbl_servicetype:
!insertmacro CALL_GETPARAM $R5 "autostart" "${SERVICE_DEMAND_START}" "lbl_autostart"
StrCpy $6 ${SERVICE_DEMAND_START}
IntCmp $R5 0 +2
StrCpy $6 ${SERVICE_AUTO_START}
StrCpy $R5 $6
lbl_autostart:
!insertmacro CALL_GETPARAM $R5 "starttype" "$R5" "lbl_starttype"
lbl_starttype:
!insertmacro CALL_GETPARAM $R6 "path" "n" "lbl_path"
lbl_path:
!insertmacro CALL_GETPARAM $R7 "display" "$2" "lbl_display"
lbl_display:
!insertmacro CALL_GETPARAM $R8 "description" "$2" "lbl_description"
lbl_description:
System::Call 'advapi32::CreateService${APITAG}(i r4, t r2, t R7, i ${SERVICE_ALL_ACCESS}, \
i R4, i R5, i 0, t R6, n, n, $R1, $R2, $R3) i.r6'
; write description of service (SERVICE_CONFIG_DESCRIPTION)
System::Call 'advapi32::ChangeServiceConfig2${APITAG}(ir6,i1,*t "$R8")i.R7'
strcmp $R7 "error" 0 lbl_descriptioncomplete
WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\$2" "Description" $R8
lbl_descriptioncomplete:
Pop $R8
Pop $R7
Pop $R6
Pop $R5
Pop $R4
Pop $R3
Pop $R2
Pop $R1
StrCmp $6 0 lbl_done lbl_good
; delete service
lbl_delete:
System::Call 'advapi32::DeleteService(i r5) i.r6'
StrCmp $6 0 lbl_done lbl_good
; start service
lbl_start:
System::Call 'advapi32::StartService${APITAG}(i r5, i 0, i 0) i.r6'
StrCmp $6 0 lbl_done lbl_good
; stop service
lbl_stop:
Push $R1
System::Call '*(i,i,i,i,i,i,i) i.R1'
System::Call 'advapi32::ControlService(i r5, i ${SERVICE_CONTROL_STOP}, i $R1) i'
System::Free $R1
Pop $R1
StrCmp $6 0 lbl_done lbl_good
; pause service
lbl_pause:
Push $R1
System::Call '*(i,i,i,i,i,i,i) i.R1'
System::Call 'advapi32::ControlService(i r5, i ${SERVICE_CONTROL_PAUSE}, i $R1) i'
System::Free $R1
Pop $R1
StrCmp $6 0 lbl_done lbl_good
; continue service
lbl_continue:
Push $R1
System::Call '*(i,i,i,i,i,i,i) i.R1'
System::Call 'advapi32::ControlService(i r5, i ${SERVICE_CONTROL_CONTINUE}, i $R1) i'
System::Free $R1
Pop $R1
StrCmp $6 0 lbl_done lbl_good
; is installed
lbl_installed:
!insertmacro CALL_GETPARAM $7 "action" "" "lbl_good"
StrCpy $3 $7
Goto lbl_select
; is service running
lbl_running:
Push $R1
System::Call '*(i,i,i,i,i,i,i) i.R1'
System::Call 'advapi32::QueryServiceStatus(i r5, i $R1) i'
System::Call '*$R1(i, i.r6)'
System::Free $R1
Pop $R1
IntFmt $6 "0x%X" $6
StrCmp $6 ${SERVICE_RUNNING} 0 lbl_done
!insertmacro CALL_GETPARAM $7 "action" "" "lbl_good"
StrCpy $3 $7
Goto lbl_select
lbl_status:
Push $R1
System::Call '*(i,i,i,i,i,i,i) i.R1'
System::Call 'advapi32::QueryServiceStatus(i r5, i $R1) i'
System::Call '*$R1(i, i .r6)'
System::Free $R1
Pop $R1
IntFmt $6 "0x%X" $6
StrCpy $0 "running"
IntCmp $6 ${SERVICE_RUNNING} lbl_done
StrCpy $0 "stopped"
IntCmp $6 ${SERVICE_STOPPED} lbl_done
StrCpy $0 "start_pending"
IntCmp $6 ${SERVICE_START_PENDING} lbl_done
StrCpy $0 "stop_pending"
IntCmp $6 ${SERVICE_STOP_PENDING} lbl_done
StrCpy $0 "running"
IntCmp $6 ${SERVICE_RUNNING} lbl_done
StrCpy $0 "continue_pending"
IntCmp $6 ${SERVICE_CONTINUE_PENDING} lbl_done
StrCpy $0 "pause_pending"
IntCmp $6 ${SERVICE_PAUSE_PENDING} lbl_done
StrCpy $0 "paused"
IntCmp $6 ${SERVICE_PAUSED} lbl_done
StrCpy $0 "unknown"
Goto lbl_done
lbl_processid:
Push $R1
Push $R2
System::Call '*(i,i,i,i,i,i,i,i,i) i.R1'
System::Call '*(i 0) i.R2'
System::Call "advapi32::QueryServiceStatusEx(i r5, i ${SC_STATUS_PROCESS_INFO}, i $R1, i 36, i $R2) i"
System::Call "*$R1(i,i,i,i,i,i,i, i .r0)"
System::Free $R2
System::Free $R1
Pop $R2
Pop $R1
Goto lbl_done
lbl_good:
StrCpy $0 "true"
lbl_done:
IntCmp $5 0 +2
System::Call 'advapi32::CloseServiceHandle(i r5) n'
IntCmp $4 0 +2
System::Call 'advapi32::CloseServiceHandle(i r4) n'
Pop $4
Pop $3
Pop $2
Pop $1
Exch 3
Pop $5
Pop $7
Pop $6
Exch $0
!macroend
Function Service
!insertmacro FUNC_SERVICE ""
FunctionEnd
Function GetParam
!insertmacro FUNC_GETPARAM
FunctionEnd
!undef APITAG
!endif

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Config"#-->
<!--#set global $help_uri="configuration/3.2/configure"#-->
<!--#set global $help_uri="configuration/3.1/configure"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<!--#from sabnzbd.encoding import CODEPAGE#-->
@@ -124,7 +124,7 @@
<div class="colmask">
<div class="padding alt">
<h5 class="copyright">Copyright &copy; 2007-2021 The SABnzbd Team &lt;<a href="mailto:team@sabnzbd.org">team@sabnzbd.org</a>&gt;</h5>
<h5 class="copyright">Copyright &copy; 2007-2020 The SABnzbd Team &lt;<a href="mailto:team@sabnzbd.org">team@sabnzbd.org</a>&gt;</h5>
<p class="copyright"><small>$T('yourRights')</small></p>
</div>

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Categories"#-->
<!--#set global $help_uri="configuration/3.2/categories"#-->
<!--#set global $help_uri="configuration/3.1/categories"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<div class="colmask">
<div class="section">

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Folders"#-->
<!--#set global $help_uri="configuration/3.2/folders"#-->
<!--#set global $help_uri="configuration/3.1/folders"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<div class="colmask">
@@ -28,7 +28,7 @@
</div>
<div class="field-pair advanced-settings">
<label class="config" for="download_free">$T('opt-download_free')</label>
<input type="text" name="download_free" id="download_free" value="$download_free" class="smaller_input" />
<input type="text" name="download_free" id="download_free" value="$download_free" class="smaller_input" />
<span class="desc">$T('explain-download_free')</span>
</div>
<div class="field-pair">
@@ -36,16 +36,6 @@
<input type="text" name="complete_dir" id="complete_dir" value="$complete_dir" data-initialdir="$my_home" />
<span class="desc">$T('explain-complete_dir')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="complete_free">$T('opt-complete_free')</label>
<input type="text" name="complete_free" id="complete_free" value="$complete_free" class="smaller_input" />
<span class="desc">$T('explain-download_free') <br>$T('explain-complete_free')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="fulldisk_autoresume">$T('opt-fulldisk_autoresume')</label>
<input type="checkbox" name="fulldisk_autoresume" id="fulldisk_autoresume" value="1" <!--#if int($fulldisk_autoresume) > 0 then 'checked="checked"' else ""#--> />
<span class="desc">$T('explain-fulldisk_autoresume')</span>
</div>
<!--#if not $nt#-->
<div class="field-pair advanced-settings">
<label class="config" for="permissions">$T('opt-permissions')</label>

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="General"#-->
<!--#set global $help_uri="configuration/3.2/general"#-->
<!--#set global $help_uri="configuration/3.1/general"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<div class="colmask">
@@ -32,7 +32,6 @@
<label class="config" for="enable_https">$T('opt-enable_https')</label>
<input type="checkbox" name="enable_https" id="enable_https" value="1" <!--#if int($enable_https) > 0 then 'checked="checked" data-original="1"' else ""#-->/>
<span class="desc">$T('explain-enable_https')</span>
<span class="desc"><span class="label label-warning">$T('warning').upper()</span> $T('explain-enable_https_warning')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="web_dir">$T('opt-web_dir')</label>

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Email"#-->
<!--#set global $help_uri="configuration/3.2/notifications"#-->
<!--#set global $help_uri="configuration/3.1/notifications"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<!--#def show_notify_checkboxes($section_label)#-->

View File

@@ -1,7 +1,6 @@
<!--#set global $pane="RSS"#-->
<!--#set global $help_uri="configuration/3.2/rss"#-->
<!--#set global $help_uri="configuration/3.1/rss"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<!--#import html#-->
<div class="colmask">
<!--#if not $active_feed#-->
<div class="section">
@@ -14,7 +13,7 @@
<tr>
<th>&nbsp;</th>
<th>$T('name')</th>
<th>$T('feed') URLs</th>
<th>$T('feed') URL</th>
<th>&nbsp;</th>
</tr>
<tr class="even">
@@ -46,10 +45,9 @@
<!--#set $odd = False#-->
<!--#for $feed_item in $feeds#-->
<!--#set $odd = not $odd#-->
<!--#set $feed_item_html = html.escape($feed_item)#-->
<tr class="data-row <!--#if $odd then " alt " else " "#-->">
<td class="chk">
<input type="checkbox" class="toggleFeedCheckbox" name="enable" value="1" <!--#if int($rss[$feed_item]['enable']) !=0 then 'checked="checked"' else ""#--> rel="$feed_item_html" />
<input type="checkbox" class="toggleFeedCheckbox" name="enable" value="1" <!--#if int($rss[$feed_item]['enable']) !=0 then 'checked="checked"' else ""#--> rel="$feed_item" />
</td>
<td class="title">
<a href="?feed=$rss[$feed_item]['link']" class="subscription-title path feed <!--#if int($rss[$feed_item]['enable']) != 0 then 'feed_enabled' else 'feed_disabled'#-->">
@@ -57,10 +55,10 @@
</a>
</td>
<td class="controls">
<button type="button" class="btn btn-default testFeed" rel="$feed_item_html"><span class="glyphicon glyphicon-sort"></span> $T('button-preFeed')</button>
<button type="button" class="btn btn-default testFeed" rel="$feed_item"><span class="glyphicon glyphicon-sort"></span> $T('button-preFeed')</button>
<input type="hidden" name="uri" value="$rss[$feed_item]['uris']" />
<button type="button" class="btn btn-default editFeed" rel="$feed_item_html"><span class="glyphicon glyphicon-pencil"></span> $T('Edit')</button>
<button type="button" class="btn btn-default delFeed" rel="$feed_item_html"><span class="glyphicon glyphicon-trash"></span></button>
<button type="button" class="btn btn-default editFeed" rel="$feed_item"><span class="glyphicon glyphicon-pencil"></span> $T('Edit')</button>
<button type="button" class="btn btn-default delFeed" rel="$feed_item"><span class="glyphicon glyphicon-trash"></span></button>
</td>
</tr>
<!--#for $uri_index, $uri in enumerate($rss[$feed_item]['uri'])#-->
@@ -108,12 +106,12 @@
<a class="main-helplink" href="$helpuri$help_uri" target="_blank"><span class="glyphicon glyphicon-question-sign"></span></a>
<h2 class="nomargin activeRSS">
<a href="${root}config/rss/">$T('cmenu-rss')</a> &raquo;
$active_feed
<a href="$rss[$active_feed]['uri']" onclick="window.open(this.href); return false;">$active_feed</a>
</h2>
<!--#if $error#-->
<div class="alert alert-danger">
<span class="glyphicon glyphicon-exclamation-sign"></span>
<!--#echo html.escape($error)#-->
$error
</div>
<!--#end if#-->
<form action="upd_rss_feed" method="post">
@@ -510,37 +508,9 @@
</div>
<!--#end if#-->
</div>
</div>
<!-- /colmask -->
<form method="post" action="save_rss_feed" class="modal fade" id="rss_edit_modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">$T('Edit') <span id="feed_edit_name_label"></span></h4>
</div>
<div class="modal-body">
<div class="form-group">
<label for="feed_edit_new_name">$T('name')</label>
<input type="text" class="form-control" name="feed_new_name" id="feed_edit_new_name" placeholder="$T('name')" size="">
</div>
<div class="form-group">
<label for="feed_edit_url">$T('feed') URLs</label>
<input type="text" class="form-control" name="uri" id="feed_edit_url" placeholder="$T('feed') URLs" size="">
<span class="help-block">$T('addMultipleFeeds')</span>
</div>
<input type="hidden" name="feed" id="feed_edit_old_name" />
<input type="hidden" name="apikey" value="$apikey" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> $T('cancel')</button>
<button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-ok"></span> $T('rss-accept')</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</form><!-- /.modal -->
<script type="text/javascript" src="${root}staticcfg/js/jquery.tablesort.min.js"></script>
<script type="text/javascript">
function urlencode(str) {
@@ -567,16 +537,20 @@ function urlencode(str) {
\$('.editFeed').click(function(){
var oldURI = \$(this).prev().val();
var whichFeed = \$(this).attr("rel");
// Fill the values
\$('#feed_edit_name_label').text(whichFeed)
\$('#feed_edit_old_name').val(whichFeed)
\$('#feed_edit_new_name').val(whichFeed)
\$('#feed_edit_url').val(oldURI)
// Show the modal
\$('#rss_edit_modal').modal('show');
var newURI = prompt("$T('feed') URL. \n$T('addMultipleFeeds').", oldURI );
if(newURI != "" && newURI !== null) {
var whichFeed = \$(this).attr("rel");
var isEnabled = \$('.toggleFeedCheckbox[rel="'+whichFeed+'"]').attr('checked') == "checked"? 1 : 0;
\$.ajax({
type: "POST",
url: "save_rss_feed",
data: {feed: whichFeed, uri: newURI, enable: isEnabled, apikey: "$apikey" }
}).done(function( msg ) {
location.reload();
});
} else {
return false;
}
});
\$('.delFeed').click(function(e){

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Scheduling"#-->
<!--#set global $help_uri="configuration/3.2/scheduling"#-->
<!--#set global $help_uri="configuration/3.1/scheduling"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<%

View File

@@ -1,15 +1,13 @@
<!--#set global $pane="Servers"#-->
<!--#set global $help_uri="configuration/3.2/servers"#-->
<!--#set global $help_uri="configuration/3.1/servers"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<!--#import json#-->
<!--#import datetime#-->
<script type="text/javascript" xmlns="http://www.w3.org/1999/html">
// Define variable needed for the server-statistics
var serverBandwithData = {}
var serverArticleTries = {}
var serverArticleFailed = {}
<script type="text/javascript">
// Define variable needed for the server-plots
var serverData = {}
</script>
<div class="colmask">
@@ -20,7 +18,7 @@
</label>
<div class="advanced-buttonSeperator"></div>
<div class="chart-selector-container" title="$T('selectedDates')">
<div class="chart-selector-container" title="$T('srv-bandwidth')">
<span class="glyphicon glyphicon-signal"></span>
<!--#set today = datetime.date.today()#-->
<input type="date" name="chart-start" id="chart-start" value="<!--#echo (today-datetime.timedelta(days=30)).strftime('%Y-%m-%d')#-->"> -
@@ -40,10 +38,6 @@
<input type="checkbox" name="enable" id="enable" value="1" checked="checked" />
<span class="desc">$T('srv-enable')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="displayname">$T('srv-displayname')</label>
<input type="text" name="displayname" id="displayname" />
</div>
<div class="field-pair">
<label class="config" for="host">$T('srv-host')</label>
<input type="text" name="host" id="host" required />
@@ -68,7 +62,7 @@
</div>
<div class="field-pair">
<label class="config" for="connections">$T('srv-connections')</label>
<input type="number" name="connections" id="connections" min="1" max="1000" value="8" required />
<input type="number" name="connections" id="connections" min="1" max="100" value="8" required />
</div>
<div class="field-pair">
<label class="config" for="priority">$T('srv-priority')</label>
@@ -108,14 +102,8 @@
<span class="desc">$T('explain-optional')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="expire_date">$T('srv-expire_date')</label>
<input type="date" name="expire_date" id="expire_date" />
<span class="desc">$T('srv-explain-expire_date')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="quota">$T('swtag-quota')</label>
<input type="text" name="quota" id="quota" class="smaller_input" />
<span class="desc">$T('srv-explain-quota')</span>
<label class="config" for="displayname">$T('srv-displayname')</label>
<input type="text" name="displayname" id="displayname" />
</div>
<div class="field-pair advanced-settings">
<label class="config" for="notes">$T('srv-notes')</label>
@@ -165,10 +153,6 @@
<div class="col1" style="display:none;">
<input type="hidden" name="enable" id="enable$cur" value="$int($server['enable'])" />
<fieldset>
<div class="field-pair advanced-settings">
<label class="config" for="displayname$cur">$T('srv-displayname')</label>
<input type="text" name="displayname" id="displayname$cur" value="$server['displayname']" />
</div>
<div class="field-pair">
<label class="config" for="host$cur">$T('srv-host')</label>
<input type="text" name="host" id="host$cur" value="$server['host']" required />
@@ -193,7 +177,7 @@
</div>
<div class="field-pair">
<label class="config" for="connections$cur">$T('srv-connections')</label>
<input type="number" name="connections" id="connections$cur" value="$server['connections']" min="1" max="1000" required />
<input type="number" name="connections" id="connections$cur" value="$server['connections']" min="1" max="100" required />
</div>
<div class="field-pair">
<label class="config" for="priority$cur">$T('srv-priority')</label>
@@ -234,14 +218,8 @@
<span class="desc">$T('srv-explain-send_group')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="expire_date$cur">$T('srv-expire_date')</label>
<input type="date" name="expire_date" id="expire_date$cur" value="$server['expire_date']" />
<span class="desc">$T('srv-explain-expire_date')</span>
</div>
<div class="field-pair advanced-settings">
<label class="config" for="quota$cur">$T('swtag-quota')</label>
<input type="text" name="quota" id="quota$cur" value="$server['quota']" class="smaller_input" />
<span class="desc">$T('srv-explain-quota')</span>
<label class="config" for="displayname$cur">$T('srv-displayname')</label>
<input type="text" name="displayname" id="displayname$cur" value="$server['displayname']" />
</div>
<div class="field-pair advanced-settings">
<label class="config" for="notes$cur">$T('srv-notes')</label>
@@ -260,31 +238,19 @@
<div class="col1" style="display:block;">
<!--#if 'amounts' in $server#-->
<div class="server-amounts-text">
<p>
<b>$T('srv-bandwidth'):</b><br/>
$T('total'): $(server['amounts'][0])B<br/>
$T('today'): $(server['amounts'][3])B<br/>
$T('thisWeek'): $(server['amounts'][2])B<br/>
$T('thisMonth'): $(server['amounts'][1])B<br/>
$T('selectedDates'): <span id="server-bandwith-value-${cur}"></span>
</p>
<p title="$T('readwiki')">
<b>$T('srv-article-availability'):</b><br/>
$T('selectedDates'): <span id="server-article-value-${cur}"></span>
</p>
<!--#if $server['quota']#-->
<p><b>$T('quota-left'):</b> $(server['quota_left'])B</p>
<!--#end if#-->
<b>$T('srv-bandwidth'):</b><br/>
$T('total'): $(server['amounts'][0])B<br/>
$T('today'): $(server['amounts'][3])B<br/>
$T('thisWeek'): $(server['amounts'][2])B<br/>
$T('thisMonth'): $(server['amounts'][1])B<br/>
$T('custom'): <span id="server-data-value-${cur}"></span>
</div>
<div class="server-chart" data-serverid="${cur}">
<div class="server-chart" data-serverid="${cur}"s>
<div id="server-chart-${cur}" class="ct-chart"></div>
</div>
<script type="text/javascript">
// Server data
serverBandwithData[${cur}] = <!--#echo json.dumps($server['amounts'][4])#-->
serverArticleTries[${cur}] = <!--#echo json.dumps($server['amounts'][5])#-->
serverArticleFailed[${cur}] = <!--#echo json.dumps($server['amounts'][6])#-->
serverData[${cur}] = <!--#echo json.dumps($server['amounts'][4])#-->
</script>
<!--#end if#-->
</div>
@@ -331,14 +297,12 @@
const labelStep = Math.round(nrDays/10)
// Save largest value
var maxBandwith = 0
var maxVal = 0
// For each chart
\$('.server-chart').each(function(j, elemn) {
const server_id = \$(elemn).data('serverid')
var totalBandwithThisRange = 0
var totalArticlesTriedThisRange = 0
var totalArticlesFailedThisRange = 0
var totalThisRange = 0
// Fill the data array
var data = {
@@ -362,41 +326,25 @@
const dateCheck = toFormattedDate(checkDate)
// Add data if we have it
if(dateCheck in serverBandwithData[server_id]) {
data['series'][0].push(serverBandwithData[server_id][dateCheck])
totalBandwithThisRange += serverBandwithData[server_id][dateCheck]
maxBandwith = Math.max(maxBandwith, serverBandwithData[server_id][dateCheck])
} else {
if(dateCheck in serverData[server_id]) {
data['series'][0].push(serverData[server_id][dateCheck])
totalThisRange += serverData[server_id][dateCheck]
maxVal = Math.max(maxVal, serverData[server_id][dateCheck])
} else {
data['series'][0].push(0)
}
// Article stats
if(dateCheck in serverArticleTries[server_id]) {
totalArticlesTriedThisRange += serverArticleTries[server_id][dateCheck]
totalArticlesFailedThisRange += serverArticleFailed[server_id][dateCheck]
}
}
// Update the text value
\$('#server-bandwith-value-' + server_id).text(filesize(totalBandwithThisRange, {round: 1}))
\$('#server-data-value-' + server_id).text(filesize(totalThisRange, {round: 1}))
// Calculate article success ratio, if available
var articleRatio = Math.round(100 * (1 - totalArticlesFailedThisRange/totalArticlesTriedThisRange))
// If values were missing
if(!isNaN(articleRatio)) {
\$('#server-article-value-' + server_id).text('$T("srv-articles-tried")'.replace('%f', articleRatio).replace('%d', totalArticlesTriedThisRange))
} else {
\$('#server-article-value-' + server_id).text('$T("notAvailable")')
}
// Save bandwidth data in a very ugly way, but we need to do this
// Save data in a very ugly way, but we need to do this
// so we can calculate the maximum Y-axis for all graphs
\$(elemn).data("chart-data", data)
})
// Set the maximum
chartOptions.axisY.high = maxBandwith
chartOptions.axisY.high = maxVal;
chartOptions.axisY.low = 0
// Update all the axis with the largest value and draw the graph

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Sorting"#-->
<!--#set global $help_uri="configuration/3.2/sorting"#-->
<!--#set global $help_uri="configuration/3.1/sorting"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<div class="colmask">

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Special"#-->
<!--#set global $help_uri="configuration/3.2/special"#-->
<!--#set global $help_uri="configuration/3.1/special"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<div class="colmask">

View File

@@ -1,5 +1,5 @@
<!--#set global $pane="Switches"#-->
<!--#set global $help_uri="configuration/3.2/switches"#-->
<!--#set global $help_uri="configuration/3.1/switches"#-->
<!--#include $webdir + "/_inc_header_uc.tmpl"#-->
<div class="colmask">

View File

@@ -553,10 +553,15 @@ tr.separator {
h2.activeRSS {
margin-bottom: 10px;
}
.activeRSS a,
.activeRSS a:visited {
.activeRSS a, .activeRSS a:visited {
text-decoration: none;
color: #000;
text-decoration: underline !important;
}
.activeRSS a:hover {
color: #4b4742;
}
.activeRSS a:first-of-type {
text-decoration: underline!important;
}
.favicon {
background-position: center center!important;

View File

@@ -5,10 +5,8 @@
<tr>
<th style="width: 25px;"></th>
<th></th>
<th class="table-status-header" data-bind="css: { 'table-header-status-smaller' : extraHistoryColumns().length }"></th>
<!-- ko foreach: extraHistoryColumns -->
<th class="table-header-extra"></th>
<!-- /ko -->
<th class="table-status-header" data-bind="css: { 'table-header-status-smaller' : extraHistoryColumn }"></th>
<th class="table-header-extra" data-bind="css: { 'table-extra-header-visible' : extraHistoryColumn }"></th>
<th style="width: 130px;"></th>
<th style="width: 60px;"></th>
</tr>
@@ -139,11 +137,10 @@
<!-- /ko -->
</td>
<td class="status row-wrap-text" data-bind="text: statusText()" onclick="showDetails(this)"></td>
<!-- ko foreach: parent.parent.extraHistoryColumns -->
<td class="row-extra-text" onclick="showDetails(this)">
<div class="row-wrap-text" data-bind="text: \$parent.showColumn(\$data)"></div>
<div class="row-wrap-text" data-bind="text: extraText">
</div>
</td>
<!-- /ko -->
<td class="history-completedon row-wrap-text" data-bind="text: completedOn(), attr: { 'data-timestamp': completed }" onclick="showDetails(this)"></td>
<td class="delete">
<div class="dropdown">

View File

@@ -26,15 +26,13 @@
<!-- /ko -->
<!-- ko foreach: allMessages -->
<tr>
<td class="table-messages-label" data-bind="attr: { 'colspan': 1 + !\$data.hasOwnProperty('clear') }">
<td class="table-messages-label">
<span class="label" data-bind="css: 'label-' + css, text: type"></span>
<span class="queue-message-text" data-bind="html: text"></span>
</td>
<!-- ko if: \$data.hasOwnProperty("clear") -->
<td class="table-messages-remove">
<a href="#" data-bind="click: clear" class="hover-button"><span class="glyphicon glyphicon-remove"></span></a>
<!-- ko if: \$data.hasOwnProperty("clear") --><a href="#" data-bind="click: clear" class="hover-button"><span class="glyphicon glyphicon-remove"></span></a><!-- /ko -->
</td>
<!-- /ko -->
</tr>
<!-- /ko -->
<!-- ko if: !hasMessages() && displayTabbed() -->

View File

@@ -152,9 +152,7 @@
<div class="col-sm-6">$T('dashboard-testDownload')</div>
<div class="col-sm-6">
<a href="#" class="btn btn-default" data-bind="click: testDownload" data-size="100MB" data-tooltip="true" data-placement="top" title="$T('dashboard-testDownload-explain')"><span class="glyphicon glyphicon-download-alt"></span> 100 MB</a>
<a href="#" class="btn btn-default" data-bind="click: testDownload" data-size="1000MB" data-tooltip="true" data-placement="top" title="$T('dashboard-testDownload-explain')"><span class="glyphicon glyphicon-download-alt"></span> 1 GB</a>
<a href="#" class="btn btn-default" data-bind="click: testDownload" data-size="10GB" data-tooltip="true" data-placement="top" title="$T('dashboard-testDownload-explain')"><span class="glyphicon glyphicon-download-alt"></span> 10 GB</a>
<a href="#" class="btn btn-default" data-bind="click: testDownload" data-size="1000MB" data-tooltip="true" data-placement="top" title="$T('dashboard-testDownload-explain')"><span class="glyphicon glyphicon-download-alt"></span> 1000 MB</a>
</div>
</div>
<hr />
@@ -219,10 +217,6 @@
<span data-bind="text: servertotalconn"></span>
</div>
</div>
<div class="row">
<div class="col-sm-6">$T('Glitter-speed')</div>
<div class="col-sm-6"><span data-bind="text: serverbps"></span>B/s</div>
</div>
<div class="row" data-bind="visible: servererror()">
<div class="col-sm-12">
<div class="alert alert-danger">
@@ -373,7 +367,8 @@
<span class="label label-warning">&gt; 1200 pixels</span>
</label>
<div class="col-sm-4">
<select name="general-extra-column" class="form-control-multiselect form-control" data-bind="selectedOptions: extraQueueColumns" multiple="true">
<select name="general-extra-column" class="form-control" data-bind="value: extraQueueColumn">
<option value="">$T('none')</option>
<option value="category">$T('category')</option>
<option value="priority">$T('priority')</option>
<option value="processing">$T('swtag-pp')</option>
@@ -388,7 +383,8 @@
<span class="label label-warning">&gt; 1200 pixels</span>
</label>
<div class="col-sm-4">
<select name="general-extra-column" class="form-control-multiselect form-control" data-bind="selectedOptions: extraHistoryColumns" multiple="true">
<select name="general-extra-column" class="form-control" data-bind="value: extraHistoryColumn">
<option value="">$T('none')</option>
<option value="category">$T('category')</option>
<option value="size">$T('size')</option>
<option value="speed">$T('Glitter-speed')</option>
@@ -403,14 +399,6 @@
<input type="checkbox" name="displayCompact" value="true" data-bind="checked: displayCompact" />
</div>
</div>
<div class="form-group form-checkbox">
<label class="col-sm-6 control-label">
$T("Glitter-displayFullWidth")
</label>
<div class="col-sm-4">
<input type="checkbox" name="displayFullWidth" value="true" data-bind="checked: displayFullWidth" />
</div>
</div>
<div class="form-group form-checkbox">
<label class="col-sm-6 control-label">
$T("Glitter-displayTabbed")
@@ -446,14 +434,14 @@
<div id="modal-add-nzb" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<form class="modal-content" data-bind="submit: addNZB">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">$T('Glitter-addNZB')</h4>
</div>
<div class="modal-body form-horizontal">
<div class="row">
<div class="col-sm-6">
<form data-bind="submit: addNZBFromURL" class="col-sm-6">
<fieldset>
<legend class="row-wrap-text">$T('Glitter-addFromURL')</legend>
<div class="input-group" data-tooltip="true" data-placement="bottom" title="$file_exts">
@@ -463,8 +451,8 @@
</span>
</div>
</fieldset>
</div>
<div class="col-sm-6">
</form>
<form data-bind="submit: addNZBFromFileForm" class="col-sm-6">
<fieldset>
<legend class="row-wrap-text">$T('Glitter-addFromFile')</legend>
<div class="input-group" data-tooltip="true" data-placement="bottom" title="$file_exts">
@@ -478,7 +466,7 @@
</span>
</div>
</fieldset>
</div>
</form>
</div>
<div class="clearfix"></div>
<hr />
@@ -524,7 +512,7 @@
</div>
<div class="clearfix"></div>
</div>
</form>
</div>
</div>
</div>
@@ -679,7 +667,7 @@
</tbody>
</table>
<hr/>
<p><small>Copyright (C) 2007-2021 The SABnzbd Team &lt;team@sabnzbd.org&gt;<br/>$T('yourRights') </small></p>
<p><small>Copyright (C) 2007-2020 The SABnzbd Team &lt;team@sabnzbd.org&gt;<br/>$T('yourRights') </small></p>
</div>
</div>
</div>

View File

@@ -67,10 +67,8 @@
<tr>
<th style="width: 25px;"></th>
<th></th>
<!-- ko foreach: extraQueueColumns -->
<th class="table-header-extra"></th>
<!-- /ko -->
<th class="table-header-progress" data-bind="css: { 'table-header-progress-smaller' : extraQueueColumns().length }"></th>
<th class="table-header-extra" data-bind="css: { 'table-extra-header-visible' : extraQueueColumn }"></th>
<th class="table-header-progress" data-bind="css: { 'table-header-progress-smaller' : extraQueueColumn }"></th>
<th style="width: 85px;"></th>
<th style="width: 60px;"></th>
</tr>
@@ -78,7 +76,7 @@
<!-- ko if: !hasQueue() -->
<tbody class="no-downloads">
<tr>
<td colspan="6" data-bind="attr: { 'colspan': 5 + extraQueueColumns().length }">
<td colspan="6">
<a href="#modal-add-nzb" class="hover-button" data-toggle="modal">
<span title="$T('Glitter-dragAndDrop')" data-tooltip="true"><span class="glyphicon glyphicon-plus-sign"></span> $T('Glitter-addNZB')</span>
</a>
@@ -120,11 +118,10 @@
<small data-bind="text: avg_age"></small>
</div>
</td>
<!-- ko foreach: parent.parent.extraQueueColumns -->
<td class="row-extra-text">
<div class="row-wrap-text" data-bind="text: \$parent.showColumn(\$data)"></div>
<div class="row-wrap-text" data-bind="text: extraText">
</div>
</td>
<!-- /ko -->
<td class="progress-indicator">
<div class="progress">
<div class="progress-bar progress-bar-info" data-bind="attr: { 'style': 'width: ' + percentage() + '%; background-color: ' + progressColor() + ';' }">

View File

@@ -152,8 +152,11 @@ function Fileslisting(parent) {
// Activate with this weird URL "API"
callSpecialAPI("./nzb/" + self.currentItem.id + "/bulk_operation/", dataToSend).then(function() {
// Set state of the check-all
setCheckAllState('#modal-item-files .multioperations-selector input[type="checkbox"]', '#modal-item-files .files-sortable input')
// Fade it out
$('.item-files-table input:checked:not(:disabled)').parents('tr').fadeOut(fadeOnDeleteDuration, function() {
// Set state of the check-all
setCheckAllState('#modal-item-files .multioperations-selector input[type="checkbox"]', '#modal-item-files .files-sortable input')
})
})
}

View File

@@ -333,10 +333,10 @@ function HistoryModel(parent, data) {
return self.script_line();
});
// Extra history columns
self.showColumn = function(param) {
// Extra history column
self.extraText = ko.pureComputed(function() {
// Picked anything?
switch(param) {
switch(self.parent.parent.extraHistoryColumn()) {
case 'speed':
// Anything to calculate?
if(self.historyStatus.bytes() > 0 && self.historyStatus.download_time() > 0) {
@@ -359,7 +359,7 @@ function HistoryModel(parent, data) {
return self.historyStatus.size();
}
return;
};
})
// Format completion time
self.completedOn = ko.pureComputed(function() {
@@ -438,10 +438,13 @@ function HistoryModel(parent, data) {
value: self.nzo_id
}).then(function(response) {
if(response.status) {
// Make sure no flickering (if there are more items left) and then remove
self.parent.isLoading(self.parent.totalItems() > 1)
self.parent.historyItems.remove(self);
self.parent.parent.refresh();
// Fade and remove
$(event.currentTarget).parent().parent().fadeOut(fadeOnDeleteDuration, function() {
// Make sure no flickering (if there are more items left) and then remove
self.parent.isLoading(self.parent.totalItems() > 1)
self.parent.historyItems.remove(self);
self.parent.parent.refresh();
})
}
});
}

View File

@@ -15,11 +15,10 @@ function ViewModel() {
self.dateFormat = ko.observable('fromNow').extend({ persist: 'pageDateFormat' });
self.displayTabbed = ko.observable().extend({ persist: 'displayTabbed' });
self.displayCompact = ko.observable(false).extend({ persist: 'displayCompact' });
self.displayFullWidth = ko.observable(false).extend({ persist: 'displayFullWidth' });
self.confirmDeleteQueue = ko.observable(true).extend({ persist: 'confirmDeleteQueue' });
self.confirmDeleteHistory = ko.observable(true).extend({ persist: 'confirmDeleteHistory' });
self.extraQueueColumns = ko.observableArray([]).extend({ persist: 'extraColumns' });
self.extraHistoryColumns = ko.observableArray([]).extend({ persist: 'extraHistoryColumns' });
self.extraQueueColumn = ko.observable('').extend({ persist: 'extraColumn' });
self.extraHistoryColumn = ko.observable('').extend({ persist: 'extraHistoryColumn' });
self.showActiveConnections = ko.observable(false).extend({ persist: 'showActiveConnections' });
self.speedMetrics = { K: "KB/s", M: "MB/s", G: "GB/s" };
@@ -629,37 +628,6 @@ function ViewModel() {
}
})
// Save the rest in config if global-settings
var saveInterfaceSettings = function(newValue) {
if(self.useGlobalOptions()) {
var interfaceSettings = {
"dateFormat": self.dateFormat,
"extraQueueColumns": self.extraQueueColumns,
"extraHistoryColumns": self.extraHistoryColumns,
"displayCompact": self.displayCompact,
"displayFullWidth": self.displayFullWidth,
"displayTabbed": self.displayTabbed,
"confirmDeleteQueue": self.confirmDeleteQueue,
"confirmDeleteHistory": self.confirmDeleteHistory
};
callAPI({
mode: "set_config",
section: "misc",
keyword: "interface_settings",
value: ko.toJSON(interfaceSettings)
})
}
}
self.dateFormat.subscribe(saveInterfaceSettings);
self.extraQueueColumns.subscribe(saveInterfaceSettings);
self.extraHistoryColumns.subscribe(saveInterfaceSettings);
self.displayCompact.subscribe(saveInterfaceSettings);
self.displayFullWidth.subscribe(saveInterfaceSettings);
self.displayTabbed.subscribe(saveInterfaceSettings);
self.confirmDeleteQueue.subscribe(saveInterfaceSettings);
self.confirmDeleteHistory.subscribe(saveInterfaceSettings);
/***
Add NZB's
***/
@@ -671,47 +639,55 @@ function ViewModel() {
if(fileName) $('.btn-file em').text(fileName)
}
// Add NZB form
self.addNZB = function(form) {
// From the upload
self.addNZBFromFileForm = function(form) {
// Anything?
if(!$(form.nzbFile)[0].files[0] && !$(form.nzbURL).val()) {
$('.btn-file, input[name="nzbURL"]').attr('style', 'border-color: red !important')
setTimeout(function() { $('.btn-file, input[name="nzbURL"]').css('border-color', '') }, 2000)
if(!$(form.nzbFile)[0].files[0]) {
$('.btn-file').attr('style', 'border-color: red !important')
setTimeout(function() { $('.btn-file').css('border-color', '') }, 2000)
return false;
}
// Upload file using the method we also use for drag-and-drop
if($(form.nzbFile)[0].files[0]) {
self.addNZBFromFile($(form.nzbFile)[0].files);
// Hide modal, upload will reset the form
$("#modal-add-nzb").modal("hide");
} else if($(form.nzbURL).val()) {
// Or add URL
var theCall = {
mode: "addurl",
name: $(form.nzbURL).val(),
nzbname: $('#nzbname').val(),
password: $('#password').val(),
script: $('#modal-add-nzb select[name="Post-processing"]').val(),
priority: $('#modal-add-nzb select[name="Priority"]').val(),
pp: $('#modal-add-nzb select[name="Processing"]').val()
}
// Upload
self.addNZBFromFile($(form.nzbFile)[0].files);
// Optional, otherwise they get mis-labeled if left empty
if($('#modal-add-nzb select[name="Category"]').val() != '*') theCall.cat = $('#modal-add-nzb select[name="Category"]').val()
if($('#modal-add-nzb select[name="Processing"]').val()) theCall.pp = $('#modal-add-nzb select[name="Category"]').val()
// Add
callAPI(theCall).then(function(r) {
// Hide and reset/refresh
self.refresh()
$("#modal-add-nzb").modal("hide");
form.reset()
$('#nzbname').val('')
});
}
// Hide modal, upload will reset the form
$("#modal-add-nzb").modal("hide");
}
// From URL
self.addNZBFromURL = function(form) {
// Anything?
if(!$(form.nzbURL).val()) {
$(form.nzbURL).attr('style', 'border-color: red !important')
setTimeout(function() { $(form.nzbURL).css('border-color', '') }, 2000)
return false;
}
// Build request
var theCall = {
mode: "addurl",
name: $(form.nzbURL).val(),
nzbname: $('#nzbname').val(),
password: $('#password').val(),
script: $('#modal-add-nzb select[name="Post-processing"]').val(),
priority: $('#modal-add-nzb select[name="Priority"]').val(),
pp: $('#modal-add-nzb select[name="Processing"]').val()
}
// Optional, otherwise they get mis-labeled if left empty
if($('#modal-add-nzb select[name="Category"]').val() != '*') theCall.cat = $('#modal-add-nzb select[name="Category"]').val()
if($('#modal-add-nzb select[name="Processing"]').val()) theCall.pp = $('#modal-add-nzb select[name="Category"]').val()
// Add
callAPI(theCall).then(function(r) {
// Hide and reset/refresh
self.refresh()
$("#modal-add-nzb").modal("hide");
form.reset()
$('#nzbname').val('')
});
}
// From the upload or filedrop
self.addNZBFromFile = function(files, fileindex) {
// First file
@@ -758,13 +734,14 @@ function ViewModel() {
// Refresh
self.refresh();
// Hide notification
hideNotification(true)
hideNotification('.main-notification-box-uploading')
// Reset the form
$('#modal-add-nzb form').trigger('reset');
$('#nzbname').val('')
$('.btn-file em').html(glitterTranslate.chooseFile + '&hellip;')
}
});
}
// Load status info
@@ -772,11 +749,8 @@ function ViewModel() {
// Full refresh? Only on click and for the status-screen
var statusFullRefresh = (event != undefined) && $('#options-status').hasClass('active');
// Make it spin if the user requested it otherwise we don't,
// because browsers use a lot of CPU for the animation
if(statusFullRefresh) {
self.hasStatusInfo(false)
}
// Make it spin
self.hasStatusInfo(false)
// Load the custom status info
callAPI({ mode: 'fullstatus', skip_dashboard: (!statusFullRefresh)*1 }).then(function(data) {
@@ -828,8 +802,7 @@ function ViewModel() {
'serveractiveconn': ko.observable(this.serveractiveconn),
'servererror': ko.observable(this.servererror),
'serveractive': ko.observable(this.serveractive),
'serverconnections': ko.observableArray(this.serverconnections),
'serverbps': ko.observable(this.serverbps)
'serverconnections': ko.observableArray(this.serverconnections)
})
})
} else {
@@ -845,8 +818,7 @@ function ViewModel() {
activeServer.serveractiveconn(this.serveractiveconn),
activeServer.servererror(this.servererror),
activeServer.serveractive(this.serveractive),
activeServer.serverconnections(this.serverconnections),
activeServer.serverbps(this.serverbps)
activeServer.serverconnections(this.serverconnections)
})
}
@@ -918,9 +890,10 @@ function ViewModel() {
clearInterval(connectionRefresh)
return
}
// Update the server stats (speed/connections)
self.loadStatusInfo()
// Only when we show them
if(self.showActiveConnections()) {
self.loadStatusInfo()
}
}, self.refreshRate() * 1000)
})
@@ -964,6 +937,8 @@ function ViewModel() {
callSpecialAPI("./status/" + $(htmlElement.currentTarget).data('action'), {
name: $("<div/>").html(folder).text()
}).then(function() {
// Remove item and load status data
$(htmlElement.currentTarget).parent().parent().fadeOut(fadeOnDeleteDuration)
// Refresh
self.loadStatusInfo(true, true)
// Hide notification
@@ -1004,11 +979,6 @@ function ViewModel() {
$('body').toggleClass('container-compact')
})
// Toggle full width
self.displayFullWidth.subscribe(function() {
$('body').toggleClass('container-full-width')
})
// Toggle Glitter's tabbed modus
self.displayTabbed.subscribe(function() {
$('body').toggleClass('container-tabbed')
@@ -1079,11 +1049,6 @@ function ViewModel() {
$('body').addClass('container-compact')
}
if(localStorageGetItem('displayFullWidth') === 'true') {
// Add extra class
$('body').addClass('container-full-width')
}
// Tabbed layout?
if(localStorageGetItem('displayTabbed') === 'true') {
$('body').addClass('container-tabbed')
@@ -1104,19 +1069,6 @@ function ViewModel() {
// Set queue limit
self.queue.paginationLimit(response.config.misc.queue_limit.toString())
// Import the rest of the settings
if(response.config.misc.interface_settings) {
var interfaceSettings = JSON.parse(response.config.misc.interface_settings);
self.dateFormat(interfaceSettings['dateFormat']);
self.extraQueueColumns(interfaceSettings['extraQueueColumns']);
self.extraHistoryColumns(interfaceSettings['extraHistoryColumns']);
self.displayCompact(interfaceSettings['displayCompact']);
self.displayFullWidth(interfaceSettings['displayFullWidth']);
self.displayTabbed(interfaceSettings['displayTabbed']);
self.confirmDeleteQueue(interfaceSettings['confirmDeleteQueue']);
self.confirmDeleteHistory(interfaceSettings['confirmDeleteHistory']);
}
}
// Set bandwidth limit

View File

@@ -440,6 +440,7 @@ function QueueListModel(parent) {
if(response.status) {
// Make sure the queue doesnt flicker and then fade-out
self.isLoading(true)
$('.delete input:checked').parents('tr').fadeOut(fadeOnDeleteDuration)
self.parent.refresh()
// Empty it
self.multiEditItems.removeAll();
@@ -566,9 +567,10 @@ function QueueModel(parent, data) {
return 'glyphicon-pause'
})
// Extra queue columns
self.showColumn = function(param) {
switch(param) {
// Extra queue column
self.extraText = ko.pureComputed(function() {
// Picked anything?
switch(self.parent.parent.extraQueueColumn()) {
case 'category':
// Exception for *
if(self.category() == "*")
@@ -588,7 +590,7 @@ function QueueModel(parent, data) {
return self.avg_age();
}
return;
};
})
// Every update
self.updateFromData = function(data) {
@@ -736,13 +738,16 @@ function QueueModel(parent, data) {
del_files: 1,
value: item.id
}).then(function(response) {
// Make sure no flickering (if there are more items left) and then remove
self.parent.isLoading(self.parent.totalItems() > 1)
parent.queueItems.remove(itemToDelete);
parent.multiEditItems.remove(function(inList) { return inList.id == itemToDelete.id; })
self.parent.parent.refresh();
// Hide notifcation
hideNotification(true)
// Fade and remove
$(event.currentTarget).parent().parent().fadeOut(fadeOnDeleteDuration, function() {
// Make sure no flickering (if there are more items left) and then remove
self.parent.isLoading(self.parent.totalItems() > 1)
parent.queueItems.remove(itemToDelete);
parent.multiEditItems.remove(function(inList) { return inList.id == itemToDelete.id; })
self.parent.parent.refresh();
// Hide notifcation
hideNotification(true)
})
});
}
};

View File

@@ -248,13 +248,6 @@ hr {
border-top: none;
}
.form-control:focus,
input[type="submit"]:focus,
button:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3) !important;
outline: initial;
}
/* Placeholders - Will not work if grouped! */
::-webkit-input-placeholder {
color: #EBEBEB !important;

View File

@@ -1735,6 +1735,7 @@ input[name="nzbURL"] {
.container-compact .search-box .form-control {
height: 28px;
}
.container-compact,
.container-compact .dropdown-menu,
.container-compact .btn,
@@ -1760,9 +1761,6 @@ input[name="nzbURL"] {
.container-compact .form-control {
height: 29px;
}
.container-compact .form-control-multiselect {
height: 60px;
}
.container-compact .modal-header {
padding: 5px 12px;
}
@@ -1842,22 +1840,18 @@ input[name="nzbURL"] {
padding-top: 5px;
}
.container-full-width .container {
width: calc(100% - 60px);
}
/***
Dynamic sizing
***/
@media screen and (min-width: 1200px) {
.queue-table .table-header-extra,
.history-table .table-header-extra {
width: 6%;
.queue-table .table-extra-header-visible,
.history-table .table-extra-header-visible {
width: 10%;
}
.queue-table .table-header-progress-smaller,
.history-table .table-header-progress-smaller {
width: 25%;
width: 35%;
}
#options-interface .label {

View File

@@ -28,7 +28,7 @@
</table>
<div class="sabnzbd_logo main_sprite_container sprite_sabnzbdplus_logo"></div>
<p><strong>SABnzbd $T('version'):</strong> $version</p>
<p><small>Copyright (C) 2008-2021 The SABnzbd Team &lt;team@sabnzbd.org&gt;</small></p>
<p><small>Copyright (C) 2008-2020 The SABnzbd Team &lt;team@sabnzbd.org&gt;</small></p>
<p><small>$T('yourRights')</small></p>
</div>

View File

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:

View File

@@ -1,6 +1,6 @@
#
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""
@@ -297,10 +297,6 @@ msgstr ""
msgid "Server address required"
msgstr ""
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -465,16 +461,6 @@ msgstr ""
msgid "Shutting down"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr ""
@@ -694,10 +680,6 @@ msgstr ""
msgid "m"
msgstr ""
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr ""
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1228,6 +1210,10 @@ msgstr ""
msgid "Idle"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr ""
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1252,9 +1238,8 @@ msgstr ""
msgid "Limit Speed"
msgstr ""
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr ""
#. #: Config->Scheduler
@@ -1303,6 +1288,10 @@ msgstr ""
msgid "History Last 10 Items"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr ""
@@ -1523,10 +1512,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -1918,6 +1903,11 @@ msgstr ""
msgid "hours"
msgstr ""
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr ""
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2013,10 +2003,6 @@ msgstr ""
msgid "This month"
msgstr ""
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr ""
@@ -2029,10 +2015,6 @@ msgstr ""
msgid "Custom"
msgstr ""
#: sabnzbd/skintext.py
msgid "Speed"
msgstr ""
#: sabnzbd/skintext.py
msgid "on"
msgstr ""
@@ -2831,10 +2813,6 @@ msgstr ""
msgid "Enable accessing the interface from a HTTPS address."
msgstr ""
#: sabnzbd/skintext.py
msgid "Modern web browsers and other clients will not accept self-signed certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr ""
@@ -3064,23 +3042,6 @@ msgstr ""
msgid "Location to store finished, fully processed downloads.<br /><i>Can be overruled by user-defined categories.</i>"
msgstr ""
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr ""
#: sabnzbd/skintext.py
msgid "Downloading will automatically resume if the minimum free space is available again.<br />Applies to both the Temporary and Complete Download Folder.<br />Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr ""
@@ -3471,6 +3432,11 @@ msgstr ""
msgid "On which day of the month or week (1=Monday) does your ISP reset the quota? (Optionally with hh:mm)"
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr ""
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr ""
@@ -3618,18 +3584,6 @@ msgstr ""
msgid "Timeout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid "Quota for this account, counted from the time it is set. In bytes, optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3719,14 +3673,6 @@ msgstr ""
msgid "Personal notes"
msgstr ""
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4452,11 +4398,11 @@ msgid "Date format"
msgstr ""
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgid "Extra queue column"
msgstr ""
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4539,6 +4485,10 @@ msgstr ""
msgid "View Script Log"
msgstr ""
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr ""
#: sabnzbd/skintext.py
msgid "LocalStorage (cookies) are disabled in your browser, interface settings will be lost after you close the browser!"
msgstr ""
@@ -4552,11 +4502,11 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgid "Speed"
msgstr ""
#: sabnzbd/skintext.py

View File

@@ -1,16 +1,16 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Pavel C <quoing_transifex@mess.cz>, 2020
# Safihre <safihre@sabnzbd.org>, 2020
# Pavel C <quoing_transifex@mess.cz>, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: Pavel C <quoing_transifex@mess.cz>, 2021\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Czech (https://www.transifex.com/sabnzbd/teams/111101/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,7 +42,6 @@ msgstr ""
#: SABnzbd.py
msgid "SABYenc disabled: no correct version found! (Found v%s, expecting v%s)"
msgstr ""
"SABYenc vypnut: Nenalezena správná verze! (Nalezena v%s, očekávána v%s)"
#. Error message
#: SABnzbd.py
@@ -63,15 +62,15 @@ msgstr "Nalezen UNRAR verze %s, doporučujeme verzi %s nebo vyšší. <br />"
#. Error message
#: SABnzbd.py
msgid "unrar binary... NOT found"
msgstr "Program unrar... nenalezen!"
msgstr "Program unrar... nenalezeno!"
#: SABnzbd.py
msgid "7za binary... NOT found!"
msgstr "Program 7za... nenalezen!"
msgstr "Program 7za... nenalezeno!"
#: SABnzbd.py
msgid "unzip binary... NOT found!"
msgstr "Program unizip... nenalezen!"
msgstr "Program unizip... nenalezeno!"
#. Error message
#: SABnzbd.py
@@ -318,10 +317,6 @@ msgstr "%s není validní emailová adresa"
msgid "Server address required"
msgstr "Adresa serveru je vyžadována"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -472,7 +467,7 @@ msgstr "Příliš mnoho spojení k serveru %s"
#. Warning message
#: sabnzbd/downloader.py
msgid "Probable account sharing"
msgstr "Pravděpodobné sdílení účtu"
msgstr ""
#. Error message
#: sabnzbd/downloader.py
@@ -487,22 +482,12 @@ msgstr ""
#. Error message
#: sabnzbd/downloader.py
msgid "Suspect error in downloader"
msgstr "Nejspíše chyba downloaderu"
msgstr ""
#: sabnzbd/downloader.py, sabnzbd/skintext.py
msgid "Shutting down"
msgstr "Vypínání"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Připojení k poštovnímu serveru se nezdařilo"
@@ -525,7 +510,7 @@ msgstr "Žádná použitelná autentizační metoda nenalezena"
#: sabnzbd/emailer.py
msgid "Unknown authentication failure in mail server"
msgstr "Neznámá chyba přihlášení k poštovnímu serveru"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to send e-mail"
@@ -537,12 +522,12 @@ msgstr "Nezdařilo se uzavřít spojení pro mail"
#: sabnzbd/emailer.py, sabnzbd/notifier.py, sabnzbd/rating.py
msgid "Cannot send, missing required data"
msgstr "Nelze odeslat, chybějí požadovaná data"
msgstr ""
#. Error message
#: sabnzbd/emailer.py
msgid "Cannot find email templates in %s"
msgstr "Nepodařilo se najít poštovní šablony v %s"
msgstr ""
#: sabnzbd/emailer.py
msgid "No recipients given, no email sent"
@@ -556,7 +541,7 @@ msgstr "Nelze číst %s"
#: sabnzbd/emailer.py
msgid "No email templates found"
msgstr "Nenalezeny poštovní šablony"
msgstr ""
#: sabnzbd/emailer.py
msgid ""
@@ -579,7 +564,7 @@ msgstr "Nelze vytvořit adresář %s"
#: sabnzbd/filesystem.py
msgid "%s directory: %s error accessing"
msgstr "Adresář %s: chyba přístupu k %s"
msgstr ""
#. Error message
#: sabnzbd/filesystem.py
@@ -589,16 +574,16 @@ msgstr "Nelze změnit oprávnění adresáře %s"
#. Error message
#: sabnzbd/filesystem.py
msgid "Failed making (%s)"
msgstr "Chyba vytváření (%s)"
msgstr ""
#. Error message
#: sabnzbd/filesystem.py, sabnzbd/postproc.py
msgid "Failed moving %s to %s"
msgstr "Chyba přesunu %s do %s"
msgstr ""
#: sabnzbd/interface.py
msgid "Refused connection with hostname \"%s\" from:"
msgstr "Odmítnuté spojení s hostem \"%s\" z:"
msgstr ""
#: sabnzbd/interface.py
msgid "User logged in to the web interface"
@@ -662,7 +647,6 @@ msgstr ""
#: sabnzbd/interface.py
msgid "Warning: LOCALHOST is ambiguous, use numerical IP-address."
msgstr ""
"Upozornění: LOCALHOST je nejednoznačný, použijte numerickou IP adresu."
#: sabnzbd/interface.py
msgid "Server address \"%s:%s\" is not valid."
@@ -671,7 +655,7 @@ msgstr "Adresa serveru \"%s:%s\" není správná."
#. Config->RSS, tab header
#: sabnzbd/interface.py, sabnzbd/skintext.py
msgid "Feed"
msgstr "Kanál"
msgstr ""
#: sabnzbd/interface.py
msgid "Daily"
@@ -711,7 +695,7 @@ msgstr "vypnuto"
#: sabnzbd/interface.py
msgid "Undefined server!"
msgstr "Nedefinovaný server!"
msgstr ""
#: sabnzbd/interface.py
msgid ""
@@ -742,10 +726,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Dostupná aktualizace!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -843,7 +823,7 @@ msgstr ""
#: sabnzbd/newsunpack.py
msgid "Unpacking"
msgstr "Rozbaluji"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Unpacking failed, unable to find %s"
@@ -852,45 +832,44 @@ msgstr ""
#. Warning message
#: sabnzbd/newsunpack.py
msgid "ERROR: unable to find \"%s\""
msgstr "CHYBA: nepodařilo se najít \"%s\""
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Unpacking failed, CRC error"
msgstr "Rozbalování selhalo, CRC chyba"
msgstr ""
#. Warning message
#: sabnzbd/newsunpack.py
msgid "ERROR: CRC failed in \"%s\""
msgstr "CHYBA: CRC selhalo pro \"%s\""
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Unpacking failed, file too large for filesystem (FAT?)"
msgstr ""
"Rozbalování selhalo, soubor je příliš velký pro souborový systém (FAT?)"
#. Error message
#: sabnzbd/newsunpack.py
msgid "ERROR: File too large for filesystem (%s)"
msgstr "CHYBA: Soubor je příliš velký pro souborový systém (%s)"
msgstr ""
#. Error message
#: sabnzbd/newsunpack.py
msgid "Unpacking failed, write error or disk is full?"
msgstr "Rozbalování selhalo, chyba zápisu nebo plný disk?"
msgstr ""
#. Error message
#: sabnzbd/newsunpack.py
msgid "ERROR: write error (%s)"
msgstr "CHYBA: chyba zápisu (%s)"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Unpacking failed, path is too long"
msgstr "Rozbalování selhalo, cesta k souboru je příliš dlouhá."
msgstr ""
#. Error message
#: sabnzbd/newsunpack.py
msgid "ERROR: path too long (%s)"
msgstr "CHYBA: cesta k souboru je příliš dlouhá (%s)"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "ERROR: %s"
@@ -919,7 +898,7 @@ msgstr ""
#: sabnzbd/newsunpack.py
msgid "Trying 7zip with password \"%s\""
msgstr "Zkouším 7zip s heslem \"%s\""
msgstr ""
#: sabnzbd/newsunpack.py
msgid "7ZIP set \"%s\" is incomplete, cannot unpack"
@@ -927,11 +906,11 @@ msgstr ""
#: sabnzbd/newsunpack.py
msgid "Could not unpack %s"
msgstr "Nelze robalit %s"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Quick Checking"
msgstr "Rychlá kontrola"
msgstr ""
#. PP phase "repair"
#: sabnzbd/newsunpack.py, sabnzbd/skintext.py
@@ -998,7 +977,7 @@ msgstr "Opravuji"
#: sabnzbd/newsunpack.py
msgid "[%s] Repaired in %s"
msgstr "[%s] opraveno v %s"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Verifying repair"
@@ -1040,11 +1019,11 @@ msgstr ""
#: sabnzbd/newswrapper.py
msgid "Certificate not valid. This is most probably a server issue."
msgstr "Certifikát není validní. Pravděpodobně chyba serveru."
msgstr ""
#: sabnzbd/newswrapper.py
msgid "Server %s uses an untrusted certificate [%s]"
msgstr "Server %s používá nedůvěryhodný certifikát [%s]"
msgstr ""
#. Main menu item
#: sabnzbd/newswrapper.py, sabnzbd/skintext.py
@@ -1204,7 +1183,7 @@ msgstr "Ignoruji duplikátní NZB \"%s\""
#. Warning message
#: sabnzbd/nzbstuff.py
msgid "Failing duplicate NZB \"%s\""
msgstr "Nezdařilo se duplikovat NZB \"%s\""
msgstr ""
#. Warning message
#: sabnzbd/nzbstuff.py
@@ -1219,7 +1198,7 @@ msgstr "Pozastavuji duplikátní NZB \"%s\""
#. Warning message
#: sabnzbd/nzbstuff.py
msgid "Unwanted Extension in file %s (%s)"
msgstr "Nechtěná přípona v souboru %s (%s)"
msgstr ""
#: sabnzbd/nzbstuff.py
msgid "Aborted, cannot be completed"
@@ -1232,11 +1211,11 @@ msgstr "Chyba při importu %s"
#: sabnzbd/nzbstuff.py, sabnzbd/skintext.py
msgid "DUPLICATE"
msgstr "DUPLIKÁT"
msgstr ""
#: sabnzbd/nzbstuff.py, sabnzbd/skintext.py
msgid "ENCRYPTED"
msgstr "ŠIFROVANÉ"
msgstr ""
#: sabnzbd/nzbstuff.py, sabnzbd/skintext.py
msgid "TOO LARGE"
@@ -1260,16 +1239,16 @@ msgstr "ČEKÁNÍ %s s"
#: sabnzbd/nzbstuff.py
msgid "PROPAGATING %s min"
msgstr "PROPAGUJI %s min"
msgstr ""
#: sabnzbd/nzbstuff.py
msgid "Downloaded in %s at an average of %sB/s"
msgstr "Staženo do %s s průměrnou rychlostí %s B/s"
msgstr ""
#. Job details page, file age column header
#: sabnzbd/nzbstuff.py, sabnzbd/skintext.py
msgid "Age"
msgstr "Stáří"
msgstr ""
#: sabnzbd/nzbstuff.py
msgid "%s articles were malformed"
@@ -1293,6 +1272,10 @@ msgstr "Výstrahy"
msgid "Idle"
msgstr "Nečinný"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Konfigurace"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1317,15 +1300,14 @@ msgstr "Vyprázdnit historii"
msgid "Limit Speed"
msgstr "Omezit rychlost"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "minuta"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr ""
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Scan watched folder"
msgstr "Zkontrolovat sledovanou složku"
msgstr ""
#: sabnzbd/osxmenu.py, sabnzbd/sabtray.py, sabnzbd/sabtraylinux.py
msgid "Read all RSS feeds"
@@ -1363,19 +1345,23 @@ msgstr ""
#: sabnzbd/osxmenu.py
msgid "Empty"
msgstr "Prázdný"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "History Last 10 Items"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr ""
#: sabnzbd/osxmenu.py
msgid "Stopping..."
msgstr "Zastavuji..."
msgstr ""
#: sabnzbd/panic.py
msgid "Problem with"
@@ -1594,10 +1580,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -1992,6 +1974,11 @@ msgstr "hodina"
msgid "hours"
msgstr "hodin"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "minuta"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2087,10 +2074,6 @@ msgstr "Tento týden"
msgid "This month"
msgstr "Tento měsíc"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Dnes"
@@ -2103,10 +2086,6 @@ msgstr "Celkem"
msgid "Custom"
msgstr "Vlastní"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr ""
#: sabnzbd/skintext.py
msgid "on"
msgstr ""
@@ -2260,7 +2239,7 @@ msgstr "Složky"
#. Main menu item
#: sabnzbd/skintext.py
msgid "Switches"
msgstr "Přepínače"
msgstr ""
#. Main menu item
#: sabnzbd/skintext.py
@@ -2275,22 +2254,22 @@ msgstr "RSS"
#. Main menu item
#: sabnzbd/skintext.py
msgid "Notifications"
msgstr "Upozornění"
msgstr ""
#. Main menu item
#: sabnzbd/skintext.py
msgid "Email"
msgstr "Email"
msgstr ""
#. Main menu item
#: sabnzbd/skintext.py
msgid "Categories"
msgstr "Kategorie"
msgstr ""
#. Main menu item
#: sabnzbd/skintext.py
msgid "Sorting"
msgstr "Řazení"
msgstr ""
#. Main menu item
#: sabnzbd/skintext.py
@@ -2339,7 +2318,7 @@ msgstr "Přidat soubor"
#. Job category
#: sabnzbd/skintext.py
msgid "Category"
msgstr "Kategorie"
msgstr ""
#. Queue page table column header
#: sabnzbd/skintext.py
@@ -2354,17 +2333,17 @@ msgstr "Priorita"
#. Post processing pick list
#: sabnzbd/skintext.py
msgid "+Repair"
msgstr "+Opravit"
msgstr ""
#. Post processing pick list
#: sabnzbd/skintext.py
msgid "+Unpack"
msgstr "+Rozbalit"
msgstr ""
#. Post processing pick list
#: sabnzbd/skintext.py
msgid "+Delete"
msgstr "+Smazat"
msgstr ""
#. Post processing pick list: abbreviation for "+Repair"
#: sabnzbd/skintext.py
@@ -2384,12 +2363,12 @@ msgstr ""
#. Priority pick list
#: sabnzbd/skintext.py
msgid "Force"
msgstr "Vynucené"
msgstr ""
#. Priority pick list
#: sabnzbd/skintext.py
msgid "Stop"
msgstr "Zastaveno"
msgstr ""
#. Add NZB Dialog
#: sabnzbd/skintext.py
@@ -2464,7 +2443,7 @@ msgstr "Akce"
#. Queue page table, script selection menu
#: sabnzbd/skintext.py
msgid "Scripts"
msgstr "Skripty"
msgstr ""
#. Confirmation popup
#: sabnzbd/skintext.py
@@ -2474,12 +2453,12 @@ msgstr ""
#. Queue page button
#: sabnzbd/skintext.py
msgid "Purge NZBs"
msgstr "Vymazat všechny NZB"
msgstr ""
#. Queue page button
#: sabnzbd/skintext.py
msgid "Purge NZBs & Delete Files"
msgstr "Vymazat všechny NZB a smazat soubory"
msgstr ""
#. Retry all failed jobs dialog box
#: sabnzbd/skintext.py
@@ -2489,12 +2468,12 @@ msgstr "Opakovat všechny nedokončené úkoly"
#. Queue page button
#: sabnzbd/skintext.py
msgid "Remove NZB"
msgstr "Odstranit NZB"
msgstr ""
#. Queue page button
#: sabnzbd/skintext.py
msgid "Remove NZB & Delete Files"
msgstr "Odstranit NZB a smazat soubory"
msgstr ""
#. Queue page, as in "4G *of* 10G"
#: sabnzbd/skintext.py
@@ -2518,7 +2497,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Reset Quota now"
msgstr "Vynulovat kvótu"
msgstr ""
#. Confirmation popup
#: sabnzbd/skintext.py
@@ -2553,21 +2532,21 @@ msgstr "Velikost"
#. Button to delete all failed jobs in History
#: sabnzbd/skintext.py
msgid "Purge Failed NZBs"
msgstr "Vymazat všechny selhalé NZB"
msgstr ""
#: sabnzbd/skintext.py
msgid "Purge Failed NZBs & Delete Files"
msgstr "Vymazat všechny selhalé NZB a smazat soubory"
msgstr ""
#. Button to delete all completed jobs in History
#: sabnzbd/skintext.py
msgid "Purge Completed NZBs"
msgstr "Vymazat všechny dokončené NZB"
msgstr ""
#. Button to delete jobs on current page in History
#: sabnzbd/skintext.py
msgid "Purge NZBs on the current page"
msgstr "Vymazat NZB na aktuální stránce"
msgstr ""
#. Button to add NZB to failed job in History
#: sabnzbd/skintext.py
@@ -2577,7 +2556,7 @@ msgstr ""
#. Path as displayed in History details
#: sabnzbd/skintext.py
msgid "Path"
msgstr "Cesta"
msgstr ""
#. Retry all failed jobs in History
#: sabnzbd/skintext.py
@@ -2591,7 +2570,7 @@ msgstr "Opakovat všechny"
#: sabnzbd/skintext.py
msgid "Virus/spam"
msgstr "Virus/spam"
msgstr ""
#: sabnzbd/skintext.py
msgid "Out of retention"
@@ -2619,17 +2598,17 @@ msgstr ""
#. Status page button
#: sabnzbd/skintext.py
msgid "Show Logging"
msgstr "Zobrazit protokol"
msgstr ""
#. Status page button
#: sabnzbd/skintext.py
msgid "Test Email"
msgstr "Otestovat email"
msgstr ""
#. Status page selection menu
#: sabnzbd/skintext.py
msgid "Logging"
msgstr "Protokol"
msgstr ""
#. Status page table header
#: sabnzbd/skintext.py
@@ -2639,17 +2618,17 @@ msgstr "Chyby/výstrahy"
#. Status page logging selection value
#: sabnzbd/skintext.py
msgid "+ Info"
msgstr "+ Info"
msgstr ""
#. Status page logging selection value
#: sabnzbd/skintext.py
msgid "+ Debug"
msgstr "+ Ladění"
msgstr ""
#. Status page tab header - Server: amount of connections
#: sabnzbd/skintext.py
msgid "Connections"
msgstr "Spojení"
msgstr ""
#. Status page, table header
#: sabnzbd/skintext.py
@@ -2659,12 +2638,12 @@ msgstr "Poslední výstrahy"
#. Status page button
#: sabnzbd/skintext.py
msgid "clear"
msgstr "vymazat"
msgstr ""
#. Status page button
#: sabnzbd/skintext.py
msgid "Unblock"
msgstr "Odblokovat"
msgstr ""
#. Status page, article identifier
#: sabnzbd/skintext.py
@@ -2690,7 +2669,7 @@ msgstr ""
#. Status page, indicator that server is enabled
#: sabnzbd/skintext.py
msgid "Enabled"
msgstr "Zapnuto"
msgstr ""
#: sabnzbd/skintext.py
msgid "Dashboard"
@@ -2718,7 +2697,7 @@ msgstr "DNS server / DNS dotazy"
#: sabnzbd/skintext.py
msgid "CPU Model"
msgstr "Model procesoru"
msgstr ""
#. Do not translate Pystone
#: sabnzbd/skintext.py
@@ -2751,7 +2730,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Repeat test"
msgstr "Opakovat test"
msgstr ""
#: sabnzbd/skintext.py
msgid "Test download"
@@ -2812,11 +2791,11 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Enable Unzip"
msgstr "Povolit Unzip"
msgstr ""
#: sabnzbd/skintext.py
msgid "Enable 7zip"
msgstr "Povolit 7zip"
msgstr ""
#: sabnzbd/skintext.py
msgid "Multicore Par2"
@@ -2838,7 +2817,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Version"
msgstr "Verze"
msgstr ""
#: sabnzbd/skintext.py
msgid "Uptime"
@@ -2847,7 +2826,7 @@ msgstr ""
#. Indicates that server is Backup server in Status page
#: sabnzbd/skintext.py
msgid "Backup"
msgstr "Záloha"
msgstr ""
#. Notification Script settings
#: sabnzbd/skintext.py
@@ -2884,7 +2863,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Web Interface"
msgstr "Webové rozhraní"
msgstr ""
#: sabnzbd/skintext.py
msgid "Choose a skin."
@@ -2914,29 +2893,23 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Security"
msgstr "Bezpečnost"
msgstr ""
#: sabnzbd/skintext.py
msgid "Enable HTTPS"
msgstr "Povolit HTTPS"
msgstr ""
#: sabnzbd/skintext.py
msgid "not installed"
msgstr "není nainstalováno"
msgstr ""
#: sabnzbd/skintext.py
msgid "Enable accessing the interface from a HTTPS address."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS port"
msgstr ""
#: sabnzbd/skintext.py
msgid "If empty, the standard port will only listen to HTTPS."
@@ -2944,7 +2917,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Certificate"
msgstr "HTTPS certifikát"
msgstr ""
#: sabnzbd/skintext.py
msgid "File name or path to HTTPS Certificate."
@@ -2987,11 +2960,11 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Maximum line speed"
msgstr "Maximální rychlost linky"
msgstr ""
#: sabnzbd/skintext.py
msgid "Percentage of line speed"
msgstr "Procento rychlosti linky"
msgstr ""
#: sabnzbd/skintext.py
msgid "Which percentage of the linespeed should SABnzbd use, e.g. 50"
@@ -3045,19 +3018,19 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Jobs"
msgstr "Úlohy"
msgstr ""
#: sabnzbd/skintext.py
msgid "Save Changes"
msgstr "Uložit změny"
msgstr ""
#: sabnzbd/skintext.py
msgid "Restore Defaults"
msgstr "Obnovit výchozí"
msgstr ""
#: sabnzbd/skintext.py
msgid "Reset"
msgstr "Reset"
msgstr ""
#: sabnzbd/skintext.py
msgid "Language"
@@ -3065,7 +3038,7 @@ msgstr "Jazyk"
#: sabnzbd/skintext.py
msgid "Select a web interface language."
msgstr "Vyberte jazyk webového rozhraní."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
@@ -3089,7 +3062,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Generate New Key"
msgstr "Generovat nový klíč"
msgstr ""
#. Explanation for QR code of APIKEY
#: sabnzbd/skintext.py
@@ -3147,7 +3120,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "User Folders"
msgstr "Uživatelská složka"
msgstr ""
#: sabnzbd/skintext.py
msgid "Browse"
@@ -3187,26 +3160,6 @@ msgid ""
"overruled by user-defined categories.</i>"
msgstr ""
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr ""
@@ -3237,7 +3190,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Scripts Folder"
msgstr "Složka se skripty"
msgstr ""
#: sabnzbd/skintext.py
msgid "Folder containing user scripts."
@@ -3355,7 +3308,7 @@ msgstr ""
#: sabnzbd/skintext.py
msgid "Detect Duplicate Downloads"
msgstr "Detekovat duplicitní stahování"
msgstr ""
#: sabnzbd/skintext.py
msgid ""
@@ -3633,6 +3586,11 @@ msgid ""
"(Optionally with hh:mm)"
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr ""
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr ""
@@ -3784,21 +3742,6 @@ msgstr ""
msgid "Timeout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3890,14 +3833,6 @@ msgstr ""
msgid "Personal notes"
msgstr ""
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4637,11 +4572,11 @@ msgid "Date format"
msgstr ""
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgid "Extra queue column"
msgstr ""
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4724,6 +4659,10 @@ msgstr ""
msgid "View Script Log"
msgstr ""
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4739,11 +4678,11 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgid "Speed"
msgstr ""
#: sabnzbd/skintext.py

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -321,10 +321,6 @@ msgstr "%s er ikke en godkendt e-mail adresse"
msgid "Server address required"
msgstr "Kræver serveradresse"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -494,16 +490,6 @@ msgstr "Suspect fejl i downloader"
msgid "Shutting down"
msgstr "Påbegynder lukning af SABnzbd"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Det lykkedes ikke at tilslutte mailserver"
@@ -755,10 +741,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Opdatering tilgængelig!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1302,6 +1284,10 @@ msgstr "Advarsler"
msgid "Idle"
msgstr "Inaktiv"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Opsætning"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1326,10 +1312,9 @@ msgstr "Tøm historik"
msgid "Limit Speed"
msgstr "Hastighedsbegrænsning"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "minut"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1378,6 +1363,10 @@ msgstr "Tom"
msgid "History Last 10 Items"
msgstr "Historik (de 10 seneste poster)"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Ny version tilgængelig"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Gå til guiden"
@@ -1631,10 +1620,6 @@ msgstr "RAR filer kontrolleres med succes"
msgid "RAR files failed to verify"
msgstr "RAR filer kunne ikke bekræfte"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2031,6 +2016,11 @@ msgstr "time"
msgid "hours"
msgstr "timer"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "minut"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2126,10 +2116,6 @@ msgstr "Denne uge"
msgid "This month"
msgstr "Denne måned"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "I dag"
@@ -2142,10 +2128,6 @@ msgstr "Totalt"
msgid "Custom"
msgstr "Tilpasse"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Hastighed"
#: sabnzbd/skintext.py
msgid "on"
msgstr "på"
@@ -2978,12 +2960,6 @@ msgstr "ikke installeret"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Aktiver adgang til interface fra en HTTPS-adresse."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS Port"
@@ -3256,26 +3232,6 @@ msgstr ""
"Sted at opbevare færdige, fuldt forarbejdede downloads.<br /><i>Kan "
"tilsidesættes af bruger-definerede kategorier.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatisk genoptag"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Tilladelser til fuldførte overførsler"
@@ -3733,6 +3689,11 @@ msgstr ""
"På hvilken dag i måneden eller ugen (1 = mandag) nulstiller din "
"internetudbyder kvota? (Valgfrit med tt: mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatisk genoptag"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Skal download genoptages efter kvotaen er nulstillet?"
@@ -3887,21 +3848,6 @@ msgstr "Adgangskode"
msgid "Timeout"
msgstr "Tidsudløb"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3994,14 +3940,6 @@ msgstr "Send gruppe kommandoen, før du anmoder om artikler."
msgid "Personal notes"
msgstr "Personlige notater"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4755,12 +4693,12 @@ msgid "Date format"
msgstr "Datoformat"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Ekstra kø kolonne"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr ""
msgid "Extra history column"
msgstr "Ekstra kolonne historie"
#: sabnzbd/skintext.py
msgid "page"
@@ -4842,6 +4780,10 @@ msgstr "Skjul/vis komplette filer"
msgid "View Script Log"
msgstr "Vis scriptlog"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Opdatering tilgængelig!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4858,14 +4800,14 @@ msgstr "Glitter har nogle (nye) egenskaber, du kan lide!"
msgid "Compact layout"
msgstr "Kompakt layout"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Tabbed layout <br/>(separat kø og historie)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Hastighed"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Bekræft Kø-fjernelse"

View File

@@ -1,18 +1,19 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# N S <reloxx@interia.pl>, 2020
# Safihre <safihre@sabnzbd.org>, 2020
# C E <githubce@eiselt.ch>, 2020
# Nikolai Bohl <n.kay01@gmail.com>, 2020
# reloxx13 <reloxx@interia.pl>, 2021
# hotio, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: reloxx13 <reloxx@interia.pl>, 2021\n"
"Last-Translator: hotio, 2020\n"
"Language-Team: German (https://www.transifex.com/sabnzbd/teams/111101/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -332,10 +333,6 @@ msgstr "%s ist keine gültige E-Mail-Adresse"
msgid "Server address required"
msgstr "Server-Adresse wird benötigt"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -513,16 +510,6 @@ msgstr "Vermute Fehler im Downloader"
msgid "Shutting down"
msgstr "Wird beendet …"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Verbindung zum Mail-Server konnte nicht hergestellt werden"
@@ -782,14 +769,10 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Neue Version verfügbar!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
msgstr "Hochladen fehlgeschlagen: %s"
msgstr "Hochladen der Datei %s fehlgeschlagen"
#. Error message
#: sabnzbd/misc.py
@@ -809,7 +792,7 @@ msgstr ""
#. Warning message
#: sabnzbd/misc.py
msgid "Failed to read the password file %s"
msgstr "Die Passwortdatei %s konnte nicht gelesen werden"
msgstr "Konnte die Passwortdatei %s nicht lesen"
#. Error message
#: sabnzbd/misc.py
@@ -1342,6 +1325,10 @@ msgstr "Warnungen"
msgid "Idle"
msgstr "Leerlauf"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Einstellungen"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1366,10 +1353,9 @@ msgstr "Verlauf leeren"
msgid "Limit Speed"
msgstr "Geschwindigkeit begrenzen"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "Minuten"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "Min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1418,6 +1404,10 @@ msgstr "Leer"
msgid "History Last 10 Items"
msgstr "Verlauf mit den letzten 10 Einträgen"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Neue Version verfügbar"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Assistent öffnen"
@@ -1683,10 +1673,6 @@ msgstr "RAR-Datei erfolgreich überprüft"
msgid "RAR files failed to verify"
msgstr "RAR-Datei konnten nicht überprüft werden"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2083,6 +2069,11 @@ msgstr "Stunde"
msgid "hours"
msgstr "Stunden"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "Minuten"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2178,10 +2169,6 @@ msgstr "Diese Woche"
msgid "This month"
msgstr "Dieser Monat"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr "Ausgewählter Datumsbereich"
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Heute"
@@ -2194,10 +2181,6 @@ msgstr "Gesamt"
msgid "Custom"
msgstr "Benutzerdefiniert"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Geschwindigkeit"
#: sabnzbd/skintext.py
msgid "on"
msgstr "An"
@@ -3045,15 +3028,6 @@ msgstr "nicht installiert"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Zugriff auf die Oberfläche über HTTPS-Adressen erlauben"
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
"Moderne Webbrowser und andere Clients akzeptieren keine selbstsignierten "
"Zertifikate und geben eine Warnung aus und/oder stellen gar keine Verbindung"
" her."
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS-Port"
@@ -3337,31 +3311,6 @@ msgstr ""
"Hier werden fertige, verarbeitete Downloads abgelegt.<br /><i>Kann von "
"benutzerdefinierten Kategorien ausser Kraft gesetzt werden.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr "Minimaler freier Speicherplatz im Download Ordner"
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
"Funktioniert nicht, wenn sich der Kategorie Ordner auf einer anderen "
"Festplatte befindet."
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatisch fortsetzen"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
"Das Herunterladen wird automatisch fortgesetzt, wenn der minimale freie Speicherplatz wieder verfügbar ist. <br />\n"
"Gilt sowohl für den temporären als auch für den Download Ordner.<br />\n"
"Wird alle paar Minuten überprüft."
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Rechte für fertige Downloads"
@@ -3843,6 +3792,11 @@ msgstr ""
"An welchem Tag des Monats oder der Woche (1=Montag) setzt Ihr ISP das "
"Kontingent zurück (optional mit hh:mm)?"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatisch fortsetzen"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr ""
@@ -4006,21 +3960,6 @@ msgstr "Passwort"
msgid "Timeout"
msgstr "Zeitüberschreitung"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -4114,14 +4053,6 @@ msgstr "Gruppen-Befehl senden, bevor Artikeln angefordert werden."
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr "Verfügbarkeit der Artikel"
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr "%f vorhanden von %d angefragten Artikeln"
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4879,12 +4810,12 @@ msgid "Date format"
msgstr "Datumsformat"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr "Weitere Warteschlangen Spalten"
msgid "Extra queue column"
msgstr "Extra Warteschlangen-Spalte"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr "Weitere Verlauf Spalten"
msgid "Extra history column"
msgstr "Extra Verlauf-Spalte"
#: sabnzbd/skintext.py
msgid "page"
@@ -4966,6 +4897,10 @@ msgstr "Vollendete Dateien anzeigen/verstecken"
msgid "View Script Log"
msgstr "Skript-Protokoll anzeigen"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Neue Version verfügbar!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4982,14 +4917,14 @@ msgstr "Glitter hat ein paar (neue) Feature die du bestimmt magst!"
msgid "Compact layout"
msgstr "Kompaktes Layout"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr "Benutze die volle Fensterbreite"
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Tab Layout <br/>(separate Warteschlange und Verlauf)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Geschwindigkeit"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Löschen von Downloads bestätigen"

View File

@@ -1,17 +1,16 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Ester Molla Aragones <moarages@gmail.com>, 2020
# Safihre <safihre@sabnzbd.org>, 2020
# 1024mb <angelb2203@gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: 1024mb <angelb2203@gmail.com>, 2020\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Spanish (https://www.transifex.com/sabnzbd/teams/111101/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -46,15 +45,14 @@ msgstr ""
msgid "SABYenc disabled: no correct version found! (Found v%s, expecting v%s)"
msgstr ""
"SABYenc deshabilitado: ¡no se ha encontrado la versión correcta! (Se ha "
"encontrado la v%s, se esperaba la v%s)"
"encontrado v%s, se anticipaba v%s)"
#. Error message
#: SABnzbd.py
msgid ""
"SABYenc module... NOT found! Expecting v%s - https://sabnzbd.org/sabyenc"
msgstr ""
"Módulo SABYenc... ¡NO encontrado! Se esperaba la v%s - "
"https://sabnzbd.org/sabyenc"
"Módulo SABYenc... NO encontrado. Se exige v%s - https://sabnzbd.org/sabyenc"
#. Error message
#: SABnzbd.py
@@ -335,10 +333,6 @@ msgstr "%s no es una dirección de correo electrónico válida."
msgid "Server address required"
msgstr "Se necesita la dirección del servidor"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -514,16 +508,6 @@ msgstr "Error sospechoso en downloader"
msgid "Shutting down"
msgstr "Apagando"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "No se pudo conectar al servidor de correo"
@@ -778,10 +762,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "¡Actualización Disponible!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1347,6 +1327,10 @@ msgstr "Advertencias"
msgid "Idle"
msgstr "Inactivo"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Configuración"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1371,10 +1355,9 @@ msgstr "Purgar historial"
msgid "Limit Speed"
msgstr "Limitar Velocidad"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "mín"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "mín."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1423,6 +1406,10 @@ msgstr "Vacía"
msgid "History Last 10 Items"
msgstr "Histórico últimos 10 elementos"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Nueva versión disponible"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Ir al Asistente"
@@ -1685,10 +1672,6 @@ msgstr "Los archivos RAR se han verificado con éxito"
msgid "RAR files failed to verify"
msgstr "No se han podido verificar los archivos RAR"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2089,6 +2072,11 @@ msgstr "hora"
msgid "hours"
msgstr "horas"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "mín"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2184,10 +2172,6 @@ msgstr "Esta semana"
msgid "This month"
msgstr "Este mes"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Hoy"
@@ -2200,10 +2184,6 @@ msgstr "Total"
msgid "Custom"
msgstr "Personalizar"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Velocidad"
#: sabnzbd/skintext.py
msgid "on"
msgstr "activado"
@@ -3051,12 +3031,6 @@ msgstr "no instalado"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Habilia el acceso a la interfaz con una dirección HTTPS"
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "Puerto HTTPS"
@@ -3339,26 +3313,6 @@ msgstr ""
"Ubicación donde guardar descargas finalizadas, totalmente procesaddas.<br "
"/><i>Puede ser obviado debido a categorías definidas por el usuario.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Auto reanudar"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Permisos para descargas completadas"
@@ -3835,6 +3789,11 @@ msgstr ""
"En qué día del mes o semana (1=Lunes) resetea tu proveedor la cuota mensual?"
" (Opcional con hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Auto reanudar"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "¿Deberían las descargas resumirse tras reiniciarse la cuota?"
@@ -3995,21 +3954,6 @@ msgstr "Contraseña"
msgid "Timeout"
msgstr "Expiración del plazo (Timeout)"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -4106,14 +4050,6 @@ msgstr "Enviar comando group antes de solicitar los artículos."
msgid "Personal notes"
msgstr "Notas personales"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4873,12 +4809,12 @@ msgid "Date format"
msgstr "Formato de fecha"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Columna de cola extra"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr ""
msgid "Extra history column"
msgstr "Columna de historia adicional"
#: sabnzbd/skintext.py
msgid "page"
@@ -4960,6 +4896,10 @@ msgstr "Ocultar/Mostrar ficheros completados"
msgid "View Script Log"
msgstr "Ver bitacora de Scripts"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "¡Actualización Disponible!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4976,14 +4916,14 @@ msgstr "¡Glitter tiene alguna nueva funcionalidad que puede gustarte!"
msgid "Compact layout"
msgstr "Diseño compacto"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Diseño de pestañas<br/>(separa la cola de espera y la historia)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Velocidad"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Confirmar eliminación de la cola"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -318,10 +318,6 @@ msgstr "%s ei ole kelvollinen sähköpostiosoite"
msgid "Server address required"
msgstr "Palvelimen osoite vaaditaan"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -490,16 +486,6 @@ msgstr "Mahdollinen virhe lataajassa"
msgid "Shutting down"
msgstr "Sammutetaan"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Postipalvelimeen yhdistäminen epäonnistui"
@@ -751,10 +737,6 @@ msgstr "t"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Päivitys saatavilla!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1295,6 +1277,10 @@ msgstr "Varoitukset"
msgid "Idle"
msgstr "Toimeton"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Asetukset"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1319,10 +1305,9 @@ msgstr "Tyhjennä historia"
msgid "Limit Speed"
msgstr "Nopeusrajoitus"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "minuutti"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1371,6 +1356,10 @@ msgstr "Tyhjä"
msgid "History Last 10 Items"
msgstr "Vie viimeiset 10 kohdetta historiaan"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Uusi versio saatavilla"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Mene velhoon"
@@ -1624,10 +1613,6 @@ msgstr "RAR arkistot varmennettiin onnistuneesti"
msgid "RAR files failed to verify"
msgstr "RAR arkistoja ei voitu varmentaa"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2022,6 +2007,11 @@ msgstr "tunti"
msgid "hours"
msgstr "tuntia"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "minuutti"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2117,10 +2107,6 @@ msgstr "Tällä viikolla"
msgid "This month"
msgstr "Tässä kuussa"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Tänään"
@@ -2133,10 +2119,6 @@ msgstr "Yhteensä"
msgid "Custom"
msgstr "Mukautettu"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Nopeus"
#: sabnzbd/skintext.py
msgid "on"
msgstr "käytössä"
@@ -2970,12 +2952,6 @@ msgstr "ei asennettu"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Ota käyttöön käyttöliittymän käyttäminen HTTPS-osoitteesta."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS portti"
@@ -3255,26 +3231,6 @@ msgstr ""
"Sijainti jonne tallennetaan valmistuneet ja täysin käsitellyt ladatut "
"kohteet.<br /><i>Käyttäjän asettamat kategoriat voivat kumota tämän.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Jatka automaattisesti"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Käyttöoikeudet valmistuneille latauksille"
@@ -3734,6 +3690,11 @@ msgstr ""
"Minä päivänä kuusta tai viikosta (1=Maanantai) palveluntarjoajasi resetoi "
"rajoituksen? (Voit syöttää kellonajan perään hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Jatka automaattisesti"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Pitäisikö latauksia jatkaa kun latausrajoitus on resetoitu?"
@@ -3887,21 +3848,6 @@ msgstr "Salasana"
msgid "Timeout"
msgstr "Aikakatkaisu"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3993,14 +3939,6 @@ msgstr "Lähettää ryhmäkomennon ennen artikkeleiden pyytämistä."
msgid "Personal notes"
msgstr "Henkilökohtaiset huomautukset"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4756,12 +4694,12 @@ msgid "Date format"
msgstr "Päivämäärän muoto"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Ylimääräisen jonon sarake"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr ""
msgid "Extra history column"
msgstr "Ylimääräinen historiasarake"
#: sabnzbd/skintext.py
msgid "page"
@@ -4843,6 +4781,10 @@ msgstr "Piilota/näytä valmistuneet tiedostot"
msgid "View Script Log"
msgstr "Näytä skriptien loki"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Päivitys saatavilla!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4860,14 +4802,14 @@ msgstr ""
msgid "Compact layout"
msgstr "Tiivis käyttöliittymä"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Välilehditetty käyttöliittymä <br/>(erillinen jono ja historia)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Nopeus"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Varmista jonon poistot"

View File

@@ -1,16 +1,16 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2020
# Fred L <88com88@gmail.com>, 2021
# Fred L <88com88@gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: Fred L <88com88@gmail.com>, 2021\n"
"Last-Translator: Fred L <88com88@gmail.com>, 2020\n"
"Language-Team: French (https://www.transifex.com/sabnzbd/teams/111101/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -336,10 +336,6 @@ msgstr "%s n'est pas une adresse email valide"
msgid "Server address required"
msgstr "Adresse du serveur requise"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr "%s n'est pas un script valide"
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -515,16 +511,6 @@ msgstr "Erreur suspecte dans le téléchargeur"
msgid "Shutting down"
msgstr "Arrêt en cours..."
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr "Le serveur %s expirera dans %s jour(s)"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr "Le serveur %s a utilisé le quota spécifié"
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Échec de connexion au serveur de messagerie"
@@ -783,10 +769,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Mise à Jour disponible!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1342,6 +1324,10 @@ msgstr "Avertissements"
msgid "Idle"
msgstr "A l'arrêt"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Configuration"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1366,10 +1352,9 @@ msgstr "Vider l'historique"
msgid "Limit Speed"
msgstr "Limiter la vitesse"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1418,6 +1403,10 @@ msgstr "Vide"
msgid "History Last 10 Items"
msgstr "Historique des 10 derniers articles"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Nouvelle version disponible"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Aller à l'assistant"
@@ -1683,10 +1672,6 @@ msgstr "Fichiers RAR vérifiés avec succès"
msgid "RAR files failed to verify"
msgstr "Echec lors de la vérification des fichiers RAR"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr "Essai avec le renommeur RAR"
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2084,6 +2069,11 @@ msgstr "heure"
msgid "hours"
msgstr "heures"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "min"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2179,10 +2169,6 @@ msgstr "Cette semaine"
msgid "This month"
msgstr "Ce mois"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr "Plage de dates sélectionnée"
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Aujourd'hui"
@@ -2195,10 +2181,6 @@ msgstr "Total"
msgid "Custom"
msgstr "Personnalisé"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Vitesse"
#: sabnzbd/skintext.py
msgid "on"
msgstr "oui"
@@ -3047,15 +3029,6 @@ msgstr "non installé"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Active l'accès à l'interface via une adresse HTTPS."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
"Les navigateurs web modernes et les autres clients n'accepteront pas les "
"certificats auto-signés et donneront un avertissement et / ou ne se "
"connecteront pas du tout."
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "Port HTTPS"
@@ -3339,31 +3312,6 @@ msgstr ""
"Emplacement des téléchargements terminés et post-traités.<br /><i>Peut être "
"outrepassé par les catégories définies par l'utilisateur.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr "Espace libre minimum pour le dossier des téléchargements terminés"
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
"Ne fonctionnera pas si un dossier de catégorie se trouve sur un autre "
"disque."
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Reprise auto"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
"Le téléchargement reprendra automatiquement si l'espace libre minimum est à "
"nouveau disponible.<br />S'applique aux dossiers de téléchargements "
"temporaires et terminés.<br />Vérifié toutes les quelques minutes."
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Permissions pour le dossier de téléchargements terminés"
@@ -3848,6 +3796,11 @@ msgstr ""
"A quel jour du mois ou de la semaine (1=lundi) votre fournisseur "
"réinitialise le quota ? (Optionnel avec hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Reprise auto"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr ""
@@ -4008,24 +3961,6 @@ msgstr "Mot de passe"
msgid "Timeout"
msgstr "Délai d'expiration"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr "Date d'expiration du compte"
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr "Avertir 5 jours avant la date d'expiration du compte."
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
"Quota pour ce compte calculé à partir du moment où il est défini. En octets,"
" éventuellement suivi de K,M,G.<br />Avertir quand il atteint 0, vérifié "
"toutes les quelques minutes."
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -4121,14 +4056,6 @@ msgstr "Envoyer la commande 'group' avant la demande des articles."
msgid "Personal notes"
msgstr "Notes personnelles"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr "Disponibilité de l'article"
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr "%f% disponibles sur %d articles demandés"
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4891,12 +4818,12 @@ msgid "Date format"
msgstr "Format de la date"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr "Colonnes de file d'attente supplémentaires"
msgid "Extra queue column"
msgstr "Colonne de file d'attente supplémentaire"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr "Colonnes d'historique supplémentaires"
msgid "Extra history column"
msgstr "Colonne d'historique additionnelle"
#: sabnzbd/skintext.py
msgid "page"
@@ -4978,6 +4905,10 @@ msgstr "Afficher/masquer les fichiers terminés"
msgid "View Script Log"
msgstr "Afficher le journal des scripts"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Mise à Jour disponible!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4996,14 +4927,14 @@ msgstr ""
msgid "Compact layout"
msgstr "Affichage compact"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr "Toujours utiliser la largeur totale de l'écran"
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Mise en page par onglets <br/>(file d'attente et historique séparés)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Vitesse"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Confirmer les suppressions de la file d'attente"

View File

@@ -1,16 +1,16 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2020
# ION, 2021
# ION, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: ION, 2021\n"
"Last-Translator: ION, 2020\n"
"Language-Team: Hebrew (https://www.transifex.com/sabnzbd/teams/111101/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -304,7 +304,7 @@ msgstr "מילות מפתח"
#. Warning message
#: sabnzbd/bpsmeter.py
msgid "Quota spent, pausing downloading"
msgstr "מכסה נוצלה, משהה הורדה"
msgstr "מיכסה נוצלה, משהה הורדה"
#: sabnzbd/cfg.py
msgid "%s is not a valid email address"
@@ -314,10 +314,6 @@ msgstr "אינה כתובת דוא״ל תקפה %s"
msgid "Server address required"
msgstr "כתובת שרת דרושה"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr "%s הוא לא תסריט תקף"
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -487,16 +483,6 @@ msgstr "הורדה חשודה במורידן"
msgid "Shutting down"
msgstr "מכבה"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr "השרת %s יפוג עוד %s יום"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr "השרת %s השתמש במכסה המצויינת"
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "נכשל בהתחברות לשרת דוא״ל"
@@ -748,10 +734,6 @@ msgstr "ש"
msgid "m"
msgstr "ד"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "עדכון זמין!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1295,6 +1277,10 @@ msgstr "אזהרות"
msgid "Idle"
msgstr "מנוחה"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "תצורה"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1319,10 +1305,9 @@ msgstr "טהר היסטוריה"
msgid "Limit Speed"
msgstr "הגבל מהירות"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "דקה"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "דקות"
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1371,6 +1356,10 @@ msgstr "ריק"
msgid "History Last 10 Items"
msgstr "העבר להיסטוריה 10 פריטים אחרונים"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "שחרור חדש זמין"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "לך לאשף"
@@ -1628,10 +1617,6 @@ msgstr "קבצי RAR וודאו בהצלחה"
msgid "RAR files failed to verify"
msgstr "נכשלו בוידוא RAR קבצי"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr "מנסה משנה שם של RAR"
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -1954,12 +1939,12 @@ msgstr "המשך עבודות עם עדיפות גבוהה"
#. Config->Scheduler
#: sabnzbd/skintext.py
msgid "Enable quota management"
msgstr "אפשר ניהול מכסה"
msgstr "אפשר ניהול מיכסה"
#. Config->Scheduler
#: sabnzbd/skintext.py
msgid "Disable quota management"
msgstr "השבת ניהול מכסה"
msgstr "השבת ניהול מיכסה"
#. Config->Scheduler
#: sabnzbd/skintext.py
@@ -2026,6 +2011,11 @@ msgstr "שעה"
msgid "hours"
msgstr "שעות"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "דקה"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2121,10 +2111,6 @@ msgstr "השבוע הזה"
msgid "This month"
msgstr "החודש הזה"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr "טווח נתונים נבחר"
#: sabnzbd/skintext.py
msgid "Today"
msgstr "היום"
@@ -2137,10 +2123,6 @@ msgstr "סה״כ"
msgid "Custom"
msgstr "מותאם אישית"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "מהירות"
#: sabnzbd/skintext.py
msgid "on"
msgstr "פועל"
@@ -2543,7 +2525,7 @@ msgstr "מאמרים חסרים"
#. Remaining quota (displayed in Queue)
#: sabnzbd/skintext.py
msgid "Quota left"
msgstr "מכסה שנותרה"
msgstr "מיכסה שנותרה"
#. Manual reset of quota
#: sabnzbd/skintext.py
@@ -2552,7 +2534,7 @@ msgstr "ידני"
#: sabnzbd/skintext.py
msgid "Reset Quota now"
msgstr "אפס מכסה כעת"
msgstr "אפס מיכסה כעת"
#. Confirmation popup
#: sabnzbd/skintext.py
@@ -2976,14 +2958,6 @@ msgstr "לא מותקן"
msgid "Enable accessing the interface from a HTTPS address."
msgstr ".HTTPS אפשר מתן גישה אל הממשק מכתובת"
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
"דפדפנים חדישים ולקוחות אחרים לא יקבלו תעודות חתומות עצמית ויתנו אזהרה או לא "
"יתחברו בכלל."
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS פתחת"
@@ -3252,29 +3226,6 @@ msgstr ""
".מיקום לאחסון הורדות שהסתיימו, מעבודות במלואן<br /><i>.ניתן להשתלט ע״י "
"קטגוריות מוגדרות ע״י משתמש</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr "שטח פנוי מזערי עבור תיקיית הורדות שלמות"
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr "לא יעבוד אם תיקיית קטגוריה נמצאת בדיסק שונה."
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "המשך באופן אוטומטי"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
"ביצוע הורדה ימשיך באופן אוטומטי אם השטח הפנוי המזערי זמין שוב.<br />זה תקף "
"על תיקיית ההורדות הזמניות ותיקיית ההורדות השלמות.<br />השטח נבדק כל כמה "
"דקות."
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "הרשאות עבור הורדות שלמות"
@@ -3702,7 +3653,7 @@ msgstr "מתן שמות"
#: sabnzbd/skintext.py
msgid "Quota"
msgstr "מכסה"
msgstr "מיכסה"
#: sabnzbd/skintext.py
msgid "Indexing"
@@ -3722,21 +3673,26 @@ msgid ""
"On which day of the month or week (1=Monday) does your ISP reset the quota? "
"(Optionally with hh:mm)"
msgstr ""
"(באיזה יום של החודש או השבוע (1=יום שני) ספק האינטרנט שלך מאפס את המכסה? (לא"
" חובה עם שש:דד"
"(באיזה יום של החודש או השבוע (1=יום שני) ספק האינטרנט שלך מאפס את המיכסה? "
"(לא חובה עם שש:דד"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "המשך באופן אוטומטי"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "?האם ההורדה תמשיך לאחר שהמכסה תתאפס"
msgstr "?האם ההורדה תמשיך לאחר שהמיכסה אופסה"
#. Does the quota get reset every day, week or month?
#: sabnzbd/skintext.py
msgid "Quota period"
msgstr "תקופת מכסה"
msgstr "תקופת מיכסה"
#: sabnzbd/skintext.py
msgid "Does the quota get reset each day, week or month?"
msgstr "?האם המכסה מתאפסת כל יום, שבוע או חודש"
msgstr "?האם המיכסה מתאפסת כל יום, שבוע או חודש"
#: sabnzbd/skintext.py
msgid "Check before download"
@@ -3878,23 +3834,6 @@ msgstr "סיסמה"
msgid "Timeout"
msgstr "פסק זמן"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr "תאריך תפוגת חשבון"
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr "הזהר 5 ימים טרם תאריך תפוגת החשבון."
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
"מכסה עבור חשבון זה, נספרת מהזמן שהיא הוגדרה. בבתים, באופן רשותי עם K,M,G "
"עוקבים.<br />הזהר כאשר המכסה מגיעה אל 0, היא נבדקת כל כמה דקות."
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3988,14 +3927,6 @@ msgstr ".פקודת שלח קבוצה לפני בקשת מאמרים"
msgid "Personal notes"
msgstr "הערות אישיות"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr "זמינות מאמר"
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr "%f% זמינים מתוך %d מאמרים מבוקשים"
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4743,12 +4674,12 @@ msgid "Date format"
msgstr "תסדיר תאריך"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr "יותר עמודות תור"
msgid "Extra queue column"
msgstr "עמודת תור נוספת"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr "יותר עמודות היסטוריה"
msgid "Extra history column"
msgstr "עמודה נוספת של היסטוריה"
#: sabnzbd/skintext.py
msgid "page"
@@ -4830,6 +4761,10 @@ msgstr "הסתר/הראה קבצים שלמים"
msgid "View Script Log"
msgstr "הצג יומן תסריטים"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "עדכון זמין!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4846,14 +4781,14 @@ msgstr "!יש מספר מאפיינים (חדשים) שאתה עשוי לאהו
msgid "Compact layout"
msgstr "פריסה צפופה"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr "השתמש תמיד ברוחב של מסך מלא"
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "פריסה בלשוניות<br/>(תור והיסטוריה נפרדים)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "מהירות"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "אשר מחיקות תור"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -315,10 +315,6 @@ msgstr "%s er ikke en godkjent e-post-adresse"
msgid "Server address required"
msgstr "Krever server-adresse"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -486,16 +482,6 @@ msgstr "Mistenker feil i nedlaster"
msgid "Shutting down"
msgstr "Starter avslutning av SABnzbd.."
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Kunne ikke koble til mailserver"
@@ -747,10 +733,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Oppdatering tilgjengelig"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1292,6 +1274,10 @@ msgstr "Advarsler"
msgid "Idle"
msgstr "Ledig"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Konfigurasjon"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1316,10 +1302,9 @@ msgstr "Slett historikk"
msgid "Limit Speed"
msgstr "Hastighetsbegrensning"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "minutt"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1368,6 +1353,10 @@ msgstr "Tom"
msgid "History Last 10 Items"
msgstr "Historikk (10 siste)"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Ny utgave er tilgjengelig"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Gå til guiden"
@@ -1621,10 +1610,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2019,6 +2004,11 @@ msgstr "time"
msgid "hours"
msgstr "timer"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "minutt"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2114,10 +2104,6 @@ msgstr "Denne uken"
msgid "This month"
msgstr "Denne måneden"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "I dag"
@@ -2130,10 +2116,6 @@ msgstr "Totalt"
msgid "Custom"
msgstr "Tilpasse"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Hastighet"
#: sabnzbd/skintext.py
msgid "on"
msgstr "på"
@@ -2966,12 +2948,6 @@ msgstr "(ikke installert)"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Aktiverer tilgangen til webgrensesnittet med HTTPS adresse."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS-port"
@@ -3241,26 +3217,6 @@ msgstr ""
"Plass for å lagre bearbeidede og ferdige nedlastinger.<br /><i>Kan "
"overstyres av brukerdefinerte kategorier.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Gjenoppta automatisk"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Rettigheter for ferdige nedlastinger"
@@ -3709,6 +3665,11 @@ msgstr ""
"På hvilken dag i måneden eller uken (1=mandag) resetter til nettilbyder "
"kvoten? (Valgfritt med tt:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Gjenoppta automatisk"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Skal nedlasting starte på nytt etter at kvoten er resatt?"
@@ -3863,21 +3824,6 @@ msgstr "Passord"
msgid "Timeout"
msgstr "Tidsavbrudd"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3969,14 +3915,6 @@ msgstr "Send gruppekommando før du ber om artikler."
msgid "Personal notes"
msgstr "Persolige notater"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4727,11 +4665,11 @@ msgid "Date format"
msgstr "Datoformat"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Ekstra kø-kolonne"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4814,6 +4752,10 @@ msgstr "Skjul/vis fullførte filer"
msgid "View Script Log"
msgstr "Se skriptlogg"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Oppdatering tilgjengelig"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4829,12 +4771,12 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
msgid "Speed"
msgstr "Hastighet"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"

View File

@@ -1,15 +1,15 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2021
# Safihre <safihre@sabnzbd.org>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2021\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Dutch (https://www.transifex.com/sabnzbd/teams/111101/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -327,10 +327,6 @@ msgstr "%s is geen geldig e-mailadres"
msgid "Server address required"
msgstr "Serveradres verplicht"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr "%s is geen geldig script."
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -506,16 +502,6 @@ msgstr "Vedachte fout in downloader"
msgid "Shutting down"
msgstr "Afsluiten"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr "Server %s verloopt over %s dag(en)."
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr "Het beschikbare quotum voor server %s is verbruikt. "
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Verbinding met e-mailserver mislukt"
@@ -771,10 +757,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Update beschikbaar!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1324,6 +1306,10 @@ msgstr "Meldingen"
msgid "Idle"
msgstr "Rust"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Instellingen"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1348,10 +1334,9 @@ msgstr "Wis de volledige geschiedenis"
msgid "Limit Speed"
msgstr "Beperk snelheid"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1400,6 +1385,10 @@ msgstr "Leeg"
msgid "History Last 10 Items"
msgstr "Geschiedenis Laaste 10 Items"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Nieuwe versie beschikbaar"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Ga naar Wizard"
@@ -1658,10 +1647,6 @@ msgstr "RAR bestanden zijn succesvol geverifieerd"
msgid "RAR files failed to verify"
msgstr "RAR bestanden zijn niet verifieerbaar"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr "RAR-hernoeming wordt geprobeerd"
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2058,6 +2043,11 @@ msgstr "uur"
msgid "hours"
msgstr "uren"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "min"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2153,10 +2143,6 @@ msgstr "Deze Week"
msgid "This month"
msgstr "Deze Maand"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr "Datumbereik"
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Vandaag"
@@ -2169,10 +2155,6 @@ msgstr "Totaal"
msgid "Custom"
msgstr "Aangepast"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Snelheid"
#: sabnzbd/skintext.py
msgid "on"
msgstr "aan"
@@ -3018,15 +3000,6 @@ msgstr "niet geinstalleerd"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Webinterface beschikbaar via HTTPS"
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
"Self-signed (onofficiële) certificaten worden door moderne webbrowsers en "
"andere programma's meestal niet geaccepteerd waardoor deze een foutmelding "
"geven of helemaal niet kunnen verbinden."
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS Poort"
@@ -3301,29 +3274,6 @@ msgid ""
"overruled by user-defined categories.</i>"
msgstr "(kan aangepast worden door de categorieën)."
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr "Minimale vrije ruimte voor verwerkte downloads map"
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr "Werkt niet als een categorie-pad naar een andere schijf verwijst."
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatisch doorgaan"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
"Het downloaden zal automatisch hervat worden als de minimale vrije ruimte "
"weer beschikbaar is.<br />Is van toepassing op zowel de tijdelijke als "
"verwerkte download map.<br />Wordt elke paar minuten gecontroleerd."
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Toegangsrechten voor verwerkte downloads"
@@ -3799,6 +3749,11 @@ msgstr ""
"Op welke dag van de maand of week (1=maandag) wordt het quotum gereset? "
"(Eventueel met hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatisch doorgaan"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr ""
@@ -3960,25 +3915,6 @@ msgstr "Wachtwoord"
msgid "Timeout"
msgstr "Tijdslimiet"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr "Verloopdatum"
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr "Ontvang 5 dagen voor de verloopdatum een waarschuwing."
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
"Quotum voor dit account, wordt geteld vanaf het moment dat het voor het "
"eerst ingesteld wordt. In bytes, in K,M,G notatie.<br />Er wordt een "
"waarschuwing gegeven als het quotum bereikt is, dit wordt elke paar minuten "
"gecontroleerd."
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -4075,14 +4011,6 @@ msgstr "Verzend de groepsnaam naar de server."
msgid "Personal notes"
msgstr "Persoonlijke aantekeningen"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr "Beschikbaarheid van artikelen"
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr "%f% van %d opgevraagde artikelen"
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4840,12 +4768,12 @@ msgid "Date format"
msgstr "Datumnotatie"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr "Extra kolommen aan wachtrij toevoegen"
msgid "Extra queue column"
msgstr "Extra kolom aan wachtrij toevoegen"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr "Extra kolommen aan geschiedenis toevoegen"
msgid "Extra history column"
msgstr "Extra kolom aan geschiedenis toevoegen"
#: sabnzbd/skintext.py
msgid "page"
@@ -4927,6 +4855,10 @@ msgstr "Toon/verberg voltooide bestanden"
msgid "View Script Log"
msgstr "Toon Script resultaat"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Update beschikbaar!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4943,14 +4875,14 @@ msgstr "Glitter heeft enkele (nieuwe) functies die je mogelijk aanspreken!"
msgid "Compact layout"
msgstr "Compacte weergave"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr "Gebruik de volledige schermbreedte"
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Weergave in tabs <br/>(wachtrij en geschiedenis apart weergeven)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Snelheid"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Bevestig verwijderen uit wachtrij"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -310,10 +310,6 @@ msgstr "%s nie jest prawidłowym adresem email"
msgid "Server address required"
msgstr "Wymagane jest podanie adresu serwera"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -483,16 +479,6 @@ msgstr "Nieobsługiwany błąd w module pobierania"
msgid "Shutting down"
msgstr "Wyłączanie"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Błąd połączenia z serwerem pocztowym"
@@ -746,10 +732,6 @@ msgstr "g"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Dostępna aktualizacja!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1293,6 +1275,10 @@ msgstr "Ostrzeżenia"
msgid "Idle"
msgstr "Bezczynny"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Konfiguracja"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1317,10 +1303,9 @@ msgstr "Wyczyść historię"
msgid "Limit Speed"
msgstr "Ogranicz prędkość"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "minuta"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1369,6 +1354,10 @@ msgstr "Brak"
msgid "History Last 10 Items"
msgstr "10 ostatnich"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Dostępne jest nowe wydanie"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Uruchom kreatora konfiguracji"
@@ -1626,10 +1615,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2024,6 +2009,11 @@ msgstr "godzina"
msgid "hours"
msgstr "godziny"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "minuta"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2119,10 +2109,6 @@ msgstr "Ten tydzień"
msgid "This month"
msgstr "Ten miesiąc"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Dzisiaj"
@@ -2135,10 +2121,6 @@ msgstr "Razem"
msgid "Custom"
msgstr "Własny"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Prędkość"
#: sabnzbd/skintext.py
msgid "on"
msgstr "włączone"
@@ -2968,12 +2950,6 @@ msgstr "nie zainstalowane"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Włącz dostęp do interfejsu przez HTTPS"
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "Port HTTPS"
@@ -3246,26 +3222,6 @@ msgstr ""
"Miejsce przechowywania ukończonych, przetworzonych plików. <br /><i>Może "
"zostać zmienione przez ustawienia kategorii.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatyczne wznawianie"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Uprawnienia dla ukończonych plików"
@@ -3718,6 +3674,11 @@ msgstr ""
"W którym dniu miesiąca lub tygodnia (1=poniedziałek) twój dostawca resetuje "
"limit pobierania (opcjonalnie z gg:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatyczne wznawianie"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Czy pobieranie powinno zostać automatycznie wznowione w dniu resetu"
@@ -3873,21 +3834,6 @@ msgstr "Hasło"
msgid "Timeout"
msgstr "Limit czasu odpowiedzi"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3979,14 +3925,6 @@ msgstr "Wyślij polecenie GROUP przed żądaniem artykułu"
msgid "Personal notes"
msgstr "Notatki osobiste"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4737,11 +4675,11 @@ msgid "Date format"
msgstr "Format daty"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Dodatkowa kolumna kolejki"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4824,6 +4762,10 @@ msgstr "Pokaż/ukryj ukończone pliki"
msgid "View Script Log"
msgstr "Zobacz log skryptu"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Dostępna aktualizacja!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4839,12 +4781,12 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
msgid "Speed"
msgstr "Prędkość"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -314,10 +314,6 @@ msgstr "%s não é um endereço de e-mail válido"
msgid "Server address required"
msgstr "Endereço do servidor necessário"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -489,16 +485,6 @@ msgstr "Erro suspeito no downloader"
msgid "Shutting down"
msgstr "Encerrando"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Falha ao conectar ao servidor de e-mail"
@@ -750,10 +736,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Atualização Disponível!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1294,6 +1276,10 @@ msgstr "Alertas"
msgid "Idle"
msgstr "Inativo"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Configuração"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1318,10 +1304,9 @@ msgstr "Limpar Histórico"
msgid "Limit Speed"
msgstr "Limitar Velocidade"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1370,6 +1355,10 @@ msgstr "Esvaziar"
msgid "History Last 10 Items"
msgstr "Histórico dos últimos 10 items"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Nova versão disponível"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Ir para o assistente"
@@ -1628,10 +1617,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2027,6 +2012,11 @@ msgstr "hora"
msgid "hours"
msgstr "horas"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "min"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2122,10 +2112,6 @@ msgstr "Esta semana"
msgid "This month"
msgstr "Este mês"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Hoje"
@@ -2138,10 +2124,6 @@ msgstr "Total"
msgid "Custom"
msgstr "Personalizado"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Velocidade"
#: sabnzbd/skintext.py
msgid "on"
msgstr "ligado"
@@ -2973,12 +2955,6 @@ msgstr "não instalado"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Ativar acesso à interface por um endereço HTTPS."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "Porta HTTPS"
@@ -3250,26 +3226,6 @@ msgstr ""
"Local para armazenar downloads concluídos, totalmente processados.<br "
"/><i>Pode ser anulado por categorias definidas pelo usuário.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Retomar automaticamente"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Permissões para downloads concluídos"
@@ -3722,6 +3678,11 @@ msgstr ""
"Em que dia do mês ou da semana (1 = segunda-feira) seu provedor de Internet "
"redefine sua quota? (Opcionalmente com hh: mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Retomar automaticamente"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "O download deve retomar quando a quota for restabelecida?"
@@ -3876,21 +3837,6 @@ msgstr "Senha"
msgid "Timeout"
msgstr "Tempo limite"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3982,14 +3928,6 @@ msgstr "Enviar comando do grupo antes de solicitar artigos."
msgid "Personal notes"
msgstr "Notas pessoais"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4740,11 +4678,11 @@ msgid "Date format"
msgstr "Formato da data"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Coluna extra da fila"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4827,6 +4765,10 @@ msgstr "Esconder/Exibir arquivos completos"
msgid "View Script Log"
msgstr "Exibir Log do Script"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Atualização Disponível!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4842,12 +4784,12 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
msgid "Speed"
msgstr "Velocidade"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"

View File

@@ -1,16 +1,15 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2020
# Eduard Baniceru <war4peace@gmail.com>, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:49+0000\n"
"Last-Translator: Eduard Baniceru <war4peace@gmail.com>, 2021\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Romanian (https://www.transifex.com/sabnzbd/teams/111101/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,15 +41,12 @@ msgstr "Nu se poate găsi şablon web:%s, se încearcă şablon standard"
#: SABnzbd.py
msgid "SABYenc disabled: no correct version found! (Found v%s, expecting v%s)"
msgstr ""
"SABYenc dezactivat: nu s-a găsit o versiune corectă! (Găsită v%s, se "
"așteaptă v%s)"
#. Error message
#: SABnzbd.py
msgid ""
"SABYenc module... NOT found! Expecting v%s - https://sabnzbd.org/sabyenc"
msgstr ""
"Modul SABYenc... NEgăsit! Se așteaptă v%s - https://sabnzbd.org/sabyenc"
#. Error message
#: SABnzbd.py
@@ -80,7 +76,7 @@ msgstr "binar unzip... Negăsit!"
#. Error message
#: SABnzbd.py
msgid "Essential modules are missing, downloading cannot start."
msgstr "Lipsesc module esențiale, descărcarea nu poate începe."
msgstr ""
#. Warning message
#: SABnzbd.py
@@ -102,13 +98,11 @@ msgid ""
"SABnzbd was started with encoding %s, this should be UTF-8. Expect problems "
"with Unicoded file and directory names in downloads."
msgstr ""
"SABnzbd a fost pornit cu encodarea %s, aceasta trebuie să fie UTF-8. Pot "
"apărea probleme cu denumiri de fișiere și directoare Unicode în descărcări."
#. Warning message
#: SABnzbd.py
msgid "Could not load additional certificates from certifi package"
msgstr "Nu pot încărca certificate adiționale din pachetul certifi"
msgstr ""
#. Warning message
#: SABnzbd.py
@@ -118,7 +112,7 @@ msgstr "Dezactivează HTTPS din cauza lipsei fişierelor CERT şi KEY"
#. Warning message
#: SABnzbd.py
msgid "Disabled HTTPS because of invalid CERT and KEY files"
msgstr "HTTPS dezactivat din cauza fișierelor invalide CERT și KEY"
msgstr ""
#. Error message
#: SABnzbd.py
@@ -175,7 +169,7 @@ msgstr "Încărcarea %s nereuşită"
#. Warning message
#: sabnzbd/__init__.py
msgid "Cannot access PID file %s"
msgstr "Nu pot accesa fișierul PID %s"
msgstr ""
#: sabnzbd/api.py, sabnzbd/emailer.py
msgid "Email succeeded"
@@ -234,8 +228,6 @@ msgid ""
"Paused job \"%s\" because of encrypted RAR file (if supplied, all passwords "
"were tried)"
msgstr ""
"Sarcina „%s” a fost întreruptă din cauza fișierului RAR criptat (toate "
"parolele oferite au fost încercate)"
#. Warning message
#: sabnzbd/assembler.py
@@ -243,8 +235,6 @@ msgid ""
"Aborted job \"%s\" because of encrypted RAR file (if supplied, all passwords"
" were tried)"
msgstr ""
"Sarcina „%s” a fost anulată din cauza fișierului RAR criptat (toate parolele"
" oferite au fost încercate)"
#: sabnzbd/assembler.py
msgid "Aborted, encryption detected"
@@ -253,7 +243,7 @@ msgstr "Terminat, encriptare detectată"
#. Warning message
#: sabnzbd/assembler.py
msgid "In \"%s\" unwanted extension in RAR file. Unwanted file is %s "
msgstr "Extensie nedorită în fișierul RAR al „%s”. Fișierul nedorit este %s"
msgstr ""
#: sabnzbd/assembler.py
msgid "Unwanted extension is in rar file %s"
@@ -266,12 +256,12 @@ msgstr "Oprit, extensii nedorite detectate"
#. Warning message
#: sabnzbd/assembler.py
msgid "Paused job \"%s\" because of rating (%s)"
msgstr "Sarcina \"%s\" întreruptă datorită ratingului (%s)"
msgstr ""
#. Warning message
#: sabnzbd/assembler.py
msgid "Aborted job \"%s\" because of rating (%s)"
msgstr "Sarcina \"%s\" anulată datorită ratingului (%s)"
msgstr ""
#: sabnzbd/assembler.py
msgid "Aborted, rating filter matched (%s)"
@@ -281,13 +271,11 @@ msgstr "Abandonat, filtru de rating potrivit (%s)"
#: sabnzbd/assembler.py
msgid "Job \"%s\" is probably encrypted due to RAR with same name inside this RAR"
msgstr ""
"Sarcina „%s” este probabil criptată din cauza unui RAR cu același nume în "
"acest RAR"
#. Warning message
#: sabnzbd/assembler.py
msgid "Job \"%s\" is probably encrypted: \"password\" in filename \"%s\""
msgstr "Sarcina „%s” este probabil criptată: „parolă” în fișierul „%s”"
msgstr ""
#: sabnzbd/assembler.py
msgid "video"
@@ -326,14 +314,10 @@ msgstr "%s nu este o adresă email validă"
msgid "Server address required"
msgstr "Adresă server necesară"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
msgstr "Configurație blocată, nu pot salva setările"
msgstr ""
#. Error message
#: sabnzbd/config.py
@@ -395,11 +379,11 @@ msgstr "Jurnal istoric stagii invalid pentru %s"
#. Warning message
#: sabnzbd/decoder.py
msgid "Decoder failure: Out of memory"
msgstr "Eroare decodare: lipsă memorie"
msgstr ""
#: sabnzbd/decoder.py
msgid "UUencode detected, only yEnc encoding is supported [%s]"
msgstr "UUencode detectat, este suportată doar codarea yEnc [%s]"
msgstr ""
#. Warning message
#: sabnzbd/decoder.py
@@ -408,7 +392,7 @@ msgstr "Eroare Necunoscută în timpul decodării %s"
#: sabnzbd/directunpacker.py, sabnzbd/skintext.py
msgid "Direct Unpack"
msgstr "Dezarhivare directă"
msgstr ""
#. PP status - History: job status
#: sabnzbd/directunpacker.py, sabnzbd/skintext.py
@@ -422,16 +406,13 @@ msgstr "Dezarhivat %s fişierele/dosarele în %s"
#. Warning message
#: sabnzbd/directunpacker.py
msgid "Direct Unpack was automatically enabled."
msgstr "Dezarhivarea directă a fost activată automat."
msgstr ""
#: sabnzbd/directunpacker.py, sabnzbd/skintext.py
msgid ""
"Jobs will start unpacking during the downloading to reduce post-processing "
"time. Only works for jobs that do not need repair."
msgstr ""
"Sarcinile vor începe dezarhivarea pe parcursul descărcării pentru a reduce "
"timpul de postprocesare, Funcționează doar pentru sarcinile care nu necesită"
" reparare."
#. Error message
#: sabnzbd/dirscanner.py
@@ -503,16 +484,6 @@ msgstr "Eroare suspectă în sistemul de descprcare"
msgid "Shutting down"
msgstr "Închidere"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Conectare server mail nereuşită"
@@ -618,7 +589,7 @@ msgstr "Mutare %s în %s nereuşită"
#: sabnzbd/interface.py
msgid "Refused connection with hostname \"%s\" from:"
msgstr "Conectare refuzată cu gazda „%s” de la:"
msgstr ""
#: sabnzbd/interface.py
msgid "User logged in to the web interface"
@@ -659,7 +630,7 @@ msgstr "Autentificare nereuşită, verifică nume utilizator/parolă."
#: sabnzbd/interface.py
msgid "Unsuccessful login attempt from %s"
msgstr "Încercare de conectare nereușită de la %s"
msgstr ""
#. Bytes (used as postfix, as in "GB", "TB")
#: sabnzbd/interface.py, sabnzbd/skintext.py
@@ -681,8 +652,6 @@ msgid ""
"The Completed Download Folder cannot be the same or a subfolder of the "
"Temporary Download Folder"
msgstr ""
"Directorul de descărcări finalizate nu poate fi același, sau un subdirector "
"al directorului de descărcări temporare"
#: sabnzbd/interface.py
msgid "Warning: LOCALHOST is ambiguous, use numerical IP-address."
@@ -741,8 +710,6 @@ msgstr "Server nedefinit!"
msgid ""
"Category folder cannot be a subfolder of the Temporary Download Folder."
msgstr ""
"Directorul de categorii nu poate fi un subdirector al directorului de "
"descărcări temporare."
#: sabnzbd/interface.py, sabnzbd/skintext.py
msgid "ERROR:"
@@ -768,14 +735,10 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Actualizare Disponibilă!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
msgstr "Eșuare la încărcarea fișierului: %s"
msgstr ""
#. Error message
#: sabnzbd/misc.py
@@ -788,23 +751,21 @@ msgid ""
"Your password file contains more than 30 passwords, testing all these "
"passwords takes a lot of time. Try to only list useful passwords."
msgstr ""
"Fișierul tău cu parole conține peste 30 de parole, verificarea tuturor "
"necesită mult timp. Listează doar parolele utile."
#. Warning message
#: sabnzbd/misc.py
msgid "Failed to read the password file %s"
msgstr "Eșuare la citirea fișierului cu parole %s"
msgstr ""
#. Error message
#: sabnzbd/misc.py
msgid "[%s] The command in build_command is undefined."
msgstr "[%s] Comanda din build_command este nedefinită."
msgstr ""
#. Error message
#: sabnzbd/misc.py
msgid "Python script \"%s\" does not have execute (+x) permission set"
msgstr "Scriptul Python „%s” nu are permisiuni de executare (+x)"
msgstr ""
#: sabnzbd/newsunpack.py, sabnzbd/postproc.py
msgid "Running script"
@@ -892,12 +853,11 @@ msgstr "EROARE: CRC nereuşit în \"%s\""
#: sabnzbd/newsunpack.py
msgid "Unpacking failed, file too large for filesystem (FAT?)"
msgstr ""
"Dezarhivare eșuată, fișier prea mare pentru sistemul de fișiere (FAT?)"
#. Error message
#: sabnzbd/newsunpack.py
msgid "ERROR: File too large for filesystem (%s)"
msgstr "EROARE: fișier prea mare pentru sistemul de fișiere (%s)"
msgstr ""
#. Error message
#: sabnzbd/newsunpack.py
@@ -928,7 +888,7 @@ msgstr "Fișier RAR ce poate fi folosit"
#: sabnzbd/newsunpack.py
msgid "Corrupt RAR file"
msgstr "Fișier RAR corupt"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "%s files in %s"
@@ -941,7 +901,7 @@ msgstr "Eroare \"%s\" în timpul rulării unzip() pe %s"
#: sabnzbd/newsunpack.py
msgid "No 7za binary found, cannot unpack \"%s\""
msgstr "Nu s-a găsit binar 7za, nu pot dezarhiva „%s”"
msgstr ""
#: sabnzbd/newsunpack.py
msgid "Trying 7zip with password \"%s\""
@@ -1004,8 +964,6 @@ msgstr "[%s] Verificat în %s, reparare necesară"
#: sabnzbd/newsunpack.py
msgid "Invalid par2 files or invalid PAR2 parameters, cannot verify or repair"
msgstr ""
"Fișiere par2 invalide sau parametri PAR2 invalizi, nu pot verifica sau "
"repara"
#: sabnzbd/newsunpack.py
msgid "Fetching %s blocks..."
@@ -1029,7 +987,7 @@ msgstr "[%s] Reparat în %s"
#: sabnzbd/newsunpack.py
msgid "Verifying repair"
msgstr "Se verifică repararea"
msgstr ""
#. Notification
#: sabnzbd/newsunpack.py, sabnzbd/notifier.py
@@ -1042,7 +1000,7 @@ msgstr "Se verifică"
#: sabnzbd/newsunpack.py
msgid "Checking extra files"
msgstr "Se verifică fișierele extra"
msgstr ""
#. PP status
#: sabnzbd/newsunpack.py, sabnzbd/skintext.py
@@ -1062,16 +1020,14 @@ msgid ""
"Certificate hostname mismatch: the server hostname is not listed in the "
"certificate. This is a server issue."
msgstr ""
"Neportivire certificat: denumirea serverului nu este listată în certificat. "
"Aceasta este o problemă de server."
#: sabnzbd/newswrapper.py
msgid "Certificate not valid. This is most probably a server issue."
msgstr "Certificat invalid. Este cel mai probabil o problemă de server."
msgstr ""
#: sabnzbd/newswrapper.py
msgid "Server %s uses an untrusted certificate [%s]"
msgstr "Serverul %s utilizează un certificat nesigur [%s]"
msgstr ""
#. Main menu item
#: sabnzbd/newswrapper.py, sabnzbd/skintext.py
@@ -1131,7 +1087,7 @@ msgstr "Indisponibil"
#: sabnzbd/notifier.py
msgid "Failed to send macOS notification"
msgstr "Eșuare la trimiterea notificării macOS"
msgstr ""
#. Warning message
#: sabnzbd/notifier.py
@@ -1221,7 +1177,7 @@ msgstr "Fişier NZB gol %s"
#: sabnzbd/nzbstuff.py
msgid "Pre-queue script marked job as failed"
msgstr "Scriptul pre-coadă a marcat sarcina ca nereușită"
msgstr ""
#. Warning message
#: sabnzbd/nzbstuff.py
@@ -1231,12 +1187,12 @@ msgstr "Ignorăm duplicat NZB \"%s\""
#. Warning message
#: sabnzbd/nzbstuff.py
msgid "Failing duplicate NZB \"%s\""
msgstr "Eșuare duplicat NZB „%s”"
msgstr ""
#. Warning message
#: sabnzbd/nzbstuff.py
msgid "Duplicate NZB"
msgstr "NZB duplicat"
msgstr ""
#. Warning message
#: sabnzbd/nzbstuff.py
@@ -1246,7 +1202,7 @@ msgstr "Întrerupem duplicat NZB \"%s\""
#. Warning message
#: sabnzbd/nzbstuff.py
msgid "Unwanted Extension in file %s (%s)"
msgstr "Extensie nedorită în fișierul %s (%s)"
msgstr ""
#: sabnzbd/nzbstuff.py
msgid "Aborted, cannot be completed"
@@ -1320,6 +1276,10 @@ msgstr "Atenționări"
msgid "Idle"
msgstr "Inactiv"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Configurare"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1344,10 +1304,9 @@ msgstr "Şterge Istoricul"
msgid "Limit Speed"
msgstr "Limitare de Viteză"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1396,6 +1355,10 @@ msgstr "Gol"
msgid "History Last 10 Items"
msgstr "Istoric Ultimele 10 Obiecte"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Versiune nouă disponibilă"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Dute la vrăjitor"
@@ -1516,8 +1479,6 @@ msgid ""
"Unable to bind to port %s on %s. Some other software uses the port or "
"SABnzbd is already running."
msgstr ""
"Nu pot rezerva portul %s pe %s. Alt software utilizează portul sau SABnzbs "
"rulează deja."
#. Warning message
#: sabnzbd/panic.py
@@ -1545,8 +1506,6 @@ msgid ""
"Completed Download Folder %s is on FAT file system, limiting maximum file "
"size to 4GB"
msgstr ""
"Directorul de descărcări finalizate %s se află pe sistem de fișiere FAT, "
"limitând dimensiunea maximă a fișierului la 4GB"
#: sabnzbd/postproc.py
msgid "Download might fail, only %s of required %s available"
@@ -1605,7 +1564,7 @@ msgstr "vezi fişier jurnal"
#: sabnzbd/postproc.py
msgid "Post-processing was aborted"
msgstr "Post-procesarea a fost întreruptă"
msgstr ""
#: sabnzbd/postproc.py
msgid "Download Failed"
@@ -1639,11 +1598,11 @@ msgstr "Verificare reuşită cu fişierele SFV"
#: sabnzbd/postproc.py
msgid "Trying RAR-based verification"
msgstr "Încerc verificare RAR"
msgstr ""
#: sabnzbd/postproc.py
msgid "[%s] RAR-based verification failed: %s"
msgstr "[%s] verificarea RAR a eșuat: %s"
msgstr ""
#: sabnzbd/postproc.py, sabnzbd/skintext.py
msgid "Passworded"
@@ -1651,14 +1610,10 @@ msgstr "Parolat"
#: sabnzbd/postproc.py
msgid "RAR files verified successfully"
msgstr "Fișierele RAR verificate cu succes"
msgstr ""
#: sabnzbd/postproc.py
msgid "RAR files failed to verify"
msgstr "Verificarea fișierelor RAR a eșuat"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
@@ -2055,6 +2010,11 @@ msgstr "oră"
msgid "hours"
msgstr "ore"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "min"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2150,10 +2110,6 @@ msgstr "Săptămâna aceasta"
msgid "This month"
msgstr "Luna aceasta"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Azi"
@@ -2166,10 +2122,6 @@ msgstr "Total"
msgid "Custom"
msgstr "Personalizat"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Viteză"
#: sabnzbd/skintext.py
msgid "on"
msgstr "activat"
@@ -3002,12 +2954,6 @@ msgstr "neinstalat"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Permite acesarea interfeţei de la o adresă HTTPS."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "Port HTTPS"
@@ -3274,26 +3220,6 @@ msgstr ""
"Locație pentru stocare , a descărcărilor procesate complet.<br /><i>Poate fi"
" suprascris de categoriile definite de utilizator.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Auto repornire"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Permisiuni pentru descărcări finalizate"
@@ -3746,6 +3672,11 @@ msgstr ""
"În ce zi a lunii sau săptămână (1=Luni) ISP dumneavoastră resetează cota? "
"(Opțional cu hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Auto repornire"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Se reia descărcarea după resetarea cotei?"
@@ -3901,21 +3832,6 @@ msgstr "Parolă"
msgid "Timeout"
msgstr "Timp Expirare"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -4008,14 +3924,6 @@ msgstr "Trimite comanda group înainte de a cere articole."
msgid "Personal notes"
msgstr "Note personale"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4764,12 +4672,12 @@ msgid "Date format"
msgstr "Format dată"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Coloană extra la Coadă"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr ""
msgid "Extra history column"
msgstr "Coloană extra de istoric"
#: sabnzbd/skintext.py
msgid "page"
@@ -4851,6 +4759,10 @@ msgstr "Ascunde/arată fișierele finalizate"
msgid "View Script Log"
msgstr "Vezi Jurnal Script"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Actualizare Disponibilă!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4867,14 +4779,14 @@ msgstr ""
msgid "Compact layout"
msgstr "Aspect compact"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "Interfață tabelară <br/>(coadă și istoric separate)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Viteză"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "Confirmă Ştergere Coadă"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -314,10 +314,6 @@ msgstr "%s не является допустимым адресом элект
msgid "Server address required"
msgstr "Требуется адрес сервера"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -485,16 +481,6 @@ msgstr ""
msgid "Shutting down"
msgstr "Завершение работы"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Не удалось подключиться к почтовому серверу"
@@ -748,10 +734,6 @@ msgstr "ч"
msgid "m"
msgstr "м"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Доступно обновление!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1294,6 +1276,10 @@ msgstr "предупреждений"
msgid "Idle"
msgstr "Бездействие"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Конфигурация"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1318,10 +1304,9 @@ msgstr "Очистить историю"
msgid "Limit Speed"
msgstr "Ограничение скорости"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "мин"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "мин."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1370,6 +1355,10 @@ msgstr "Пусто"
msgid "History Last 10 Items"
msgstr "Последние 10 элементов истории"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Доступна новая версия"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Запустить мастер"
@@ -1625,10 +1614,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2023,6 +2008,11 @@ msgstr "час"
msgid "hours"
msgstr "часов"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "мин"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2118,10 +2108,6 @@ msgstr "за эту неделю"
msgid "This month"
msgstr "за этот месяц"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "за сегодня"
@@ -2134,10 +2120,6 @@ msgstr "всего"
msgid "Custom"
msgstr "Другой"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Скорость"
#: sabnzbd/skintext.py
msgid "on"
msgstr "на"
@@ -2967,12 +2949,6 @@ msgstr "не установлено"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Доступ к интерфейсу по протоколу HTTPS."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "Порт HTTPS"
@@ -3242,26 +3218,6 @@ msgstr ""
"Место для сохранения готовых, полностью обработанных загрузок.<br /><i>Можно"
" переопределить в пользовательских категориях.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Автоматически возобновлять"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Права доступа для завершённых загрузок"
@@ -3708,6 +3664,11 @@ msgstr ""
"День месяца или недели (1 — понедельник), когда провайдер сбрасывает квоту. "
"(дополнительно можно указать чч:мм)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Автоматически возобновлять"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Возобновлять загрузку после сброса квоты?"
@@ -3861,21 +3822,6 @@ msgstr "Пароль"
msgid "Timeout"
msgstr "Время ожидания"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3967,14 +3913,6 @@ msgstr "Отправлять команду группы перед запрос
msgid "Personal notes"
msgstr ""
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4730,11 +4668,11 @@ msgid "Date format"
msgstr ""
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgid "Extra queue column"
msgstr ""
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4817,6 +4755,10 @@ msgstr ""
msgid "View Script Log"
msgstr "Просмотреть журнал сценария"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Доступно обновление!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4832,12 +4774,12 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
msgid "Speed"
msgstr "Скорость"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -312,10 +312,6 @@ msgstr "%s nije ispravna email adresa"
msgid "Server address required"
msgstr "Потребна је адреса сервера"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -484,16 +480,6 @@ msgstr "Sumnja u grešku u programu za download"
msgid "Shutting down"
msgstr "Гашење"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Неуспешно привезивање на сервер е-поште"
@@ -743,10 +729,6 @@ msgstr "с"
msgid "m"
msgstr "м"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Нова верзија доступна!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1288,6 +1270,10 @@ msgstr "Упозорења"
msgid "Idle"
msgstr "Мирање"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Поставке"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1312,9 +1298,8 @@ msgstr "Очисти хронологију"
msgid "Limit Speed"
msgstr "Ограничење брзине"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "мин."
#. #: Config->Scheduler
@@ -1364,6 +1349,10 @@ msgstr "Празно"
msgid "History Last 10 Items"
msgstr "Хронологија задњих 10 ставка"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Ново издање је доступно"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Покрени асистент"
@@ -1617,10 +1606,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2015,6 +2000,11 @@ msgstr "сат"
msgid "hours"
msgstr "сата(и)"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "мин."
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2110,10 +2100,6 @@ msgstr "Ове седмице"
msgid "This month"
msgstr "Овог месеца"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "Данас"
@@ -2126,10 +2112,6 @@ msgstr "Укупно"
msgid "Custom"
msgstr "Прилагођено"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Брзина"
#: sabnzbd/skintext.py
msgid "on"
msgstr "укљ."
@@ -2957,12 +2939,6 @@ msgstr "никје инсталирано"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Приступ интерфејсу преко HTTPS адресе."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS порт"
@@ -3230,26 +3206,6 @@ msgstr ""
"Смештај завршених, процесираних преузимања.<br /><i>Може се заобићи у "
"дефинисаним категоријама.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatski nastavi"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Дозволе за фасциклу завршених преузимања"
@@ -3696,6 +3652,11 @@ msgstr ""
"Који дан месеца или недеље (1=понедељак) Ваш провајдер ресетује квоту? "
"(опционо са hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Automatski nastavi"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Да се настави преузимање после ресета квоте?"
@@ -3850,21 +3811,6 @@ msgstr "Лозинка"
msgid "Timeout"
msgstr "Време истекло"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3956,14 +3902,6 @@ msgstr "Послати команду 'group' пре тражења артикл
msgid "Personal notes"
msgstr "Lične zabeleške"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4712,11 +4650,11 @@ msgid "Date format"
msgstr "Формат датума"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Ekstra kolona reda"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4799,6 +4737,10 @@ msgstr "Sakrij/prikaži sve završene datoteke"
msgid "View Script Log"
msgstr "Види извештај скрипта"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Нова верзија доступна!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4814,12 +4756,12 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
msgid "Speed"
msgstr "Брзина"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -312,10 +312,6 @@ msgstr "%s är inte en godkänd e-mail adress"
msgid "Server address required"
msgstr "Kräver serveradress"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -484,16 +480,6 @@ msgstr "Misstänker fel i nedladdare"
msgid "Shutting down"
msgstr "Påbörjar nedstängning av SABnzbd.."
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "Det gick inte att ansluta till mailserver"
@@ -745,10 +731,6 @@ msgstr "h"
msgid "m"
msgstr "m"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Uppdatering tillgänglig"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1292,6 +1274,10 @@ msgstr "Varningar"
msgid "Idle"
msgstr "Inaktiv"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "Konfiguration"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1316,10 +1302,9 @@ msgstr "Töm historik"
msgid "Limit Speed"
msgstr "Hastighetsbegränsning"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
msgstr "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "min."
#. #: Config->Scheduler
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
@@ -1368,6 +1353,10 @@ msgstr "Tom"
msgid "History Last 10 Items"
msgstr "Historik (10 senaste sakerna)"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "Ny utgåva tillgänglig"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "Gå till guiden"
@@ -1623,10 +1612,6 @@ msgstr ""
msgid "RAR files failed to verify"
msgstr ""
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2021,6 +2006,11 @@ msgstr "timme"
msgid "hours"
msgstr "timmar"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "min"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2116,10 +2106,6 @@ msgstr "Denna vecka"
msgid "This month"
msgstr "Denna månad"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "I dag"
@@ -2132,10 +2118,6 @@ msgstr "Totalt"
msgid "Custom"
msgstr "Anpassa"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "Hastighet"
#: sabnzbd/skintext.py
msgid "on"
msgstr "den"
@@ -2965,12 +2947,6 @@ msgstr "inte installerad"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "Aktivera åtkomst till webbkontrollen med HTTPS adress."
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS-port"
@@ -3241,26 +3217,6 @@ msgstr ""
"Plats för att lagra bearbetade och färdiga nedladdningar.<br /><i>Kan "
"åsidosättas av användar-definierade kategorier.</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Autoåterupptagning"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "Rättigheter för färdiga nedladdningar"
@@ -3708,6 +3664,11 @@ msgstr ""
"På vilken dag i månaden eller veckan (1=Måndag) nollställer din ISP din "
"kvot? (Alternativt med hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "Autoåterupptagning"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "Skall nerladdning återupptas efter att kvot är nollställd?"
@@ -3862,21 +3823,6 @@ msgstr "Lösenord"
msgid "Timeout"
msgstr "Tidsgräns"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3968,14 +3914,6 @@ msgstr "Skicka gruppkommando innan du begär artiklar."
msgid "Personal notes"
msgstr "Personliga noteringar"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4724,11 +4662,11 @@ msgid "Date format"
msgstr "Datumformat"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "Extra kökolumn"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgid "Extra history column"
msgstr ""
#: sabnzbd/skintext.py
@@ -4811,6 +4749,10 @@ msgstr "Visa/göm färdiga filer"
msgid "View Script Log"
msgstr "Visa skriptlogg"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "Uppdatering tillgänglig"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4826,12 +4768,12 @@ msgid "Compact layout"
msgstr ""
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr ""
msgid "Speed"
msgstr "Hastighet"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file MAIN
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -310,10 +310,6 @@ msgstr "%s 不是有效的电子邮箱地址"
msgid "Server address required"
msgstr "服务器地址必填"
#: sabnzbd/cfg.py
msgid "%s is not a valid script"
msgstr ""
#. Warning message
#: sabnzbd/config.py
msgid "Configuration locked, cannot save settings"
@@ -481,16 +477,6 @@ msgstr "下载器疑似错误"
msgid "Shutting down"
msgstr "正在关闭"
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s is expiring in %s day(s)"
msgstr ""
#. Warning message
#: sabnzbd/downloader.py
msgid "Server %s has used the specified quota"
msgstr ""
#: sabnzbd/emailer.py
msgid "Failed to connect to mail server"
msgstr "无法连接到邮件服务器"
@@ -735,10 +721,6 @@ msgstr "小时"
msgid "m"
msgstr "分钟"
#: sabnzbd/misc.py, sabnzbd/skintext.py
msgid "Update Available!"
msgstr "有更新可用!"
#. Error message
#: sabnzbd/misc.py
msgid "Failed to upload file: %s"
@@ -1278,6 +1260,10 @@ msgstr "警告信息"
msgid "Idle"
msgstr "空闲"
#: sabnzbd/osxmenu.py
msgid "Configuration"
msgstr "配置"
#. Main menu item
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "Queue"
@@ -1302,9 +1288,8 @@ msgstr "清空历史"
msgid "Limit Speed"
msgstr "限速"
#. One minute
#: sabnzbd/osxmenu.py, sabnzbd/skintext.py
msgid "min"
#: sabnzbd/osxmenu.py
msgid "min."
msgstr "分钟"
#. #: Config->Scheduler
@@ -1354,6 +1339,10 @@ msgstr "清空"
msgid "History Last 10 Items"
msgstr "最近十条历史记录"
#: sabnzbd/osxmenu.py
msgid "New release available"
msgstr "新版本可用"
#: sabnzbd/osxmenu.py
msgid "Go to wizard"
msgstr "转到向导"
@@ -1607,10 +1596,6 @@ msgstr "RAR 文件验证成功"
msgid "RAR files failed to verify"
msgstr "RAR 文件验证失败"
#: sabnzbd/postproc.py
msgid "Trying RAR renamer"
msgstr ""
#. Warning message
#: sabnzbd/postproc.py
msgid "No matching earlier rar file for %s"
@@ -2005,6 +1990,11 @@ msgstr "小时"
msgid "hours"
msgstr "小时"
#. One minute
#: sabnzbd/skintext.py
msgid "min"
msgstr "分钟"
#. Multiple minutes
#: sabnzbd/skintext.py
msgid "mins"
@@ -2100,10 +2090,6 @@ msgstr "本周"
msgid "This month"
msgstr "本月"
#: sabnzbd/skintext.py
msgid "Selected date range"
msgstr ""
#: sabnzbd/skintext.py
msgid "Today"
msgstr "今天"
@@ -2116,10 +2102,6 @@ msgstr "总计"
msgid "Custom"
msgstr "自定义"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "速度"
#: sabnzbd/skintext.py
msgid "on"
msgstr "开"
@@ -2941,12 +2923,6 @@ msgstr "未安装"
msgid "Enable accessing the interface from a HTTPS address."
msgstr "启用 HTTPS 地址访问界面。"
#: sabnzbd/skintext.py
msgid ""
"Modern web browsers and other clients will not accept self-signed "
"certificates and will give a warning and/or won't connect at all."
msgstr ""
#: sabnzbd/skintext.py
msgid "HTTPS Port"
msgstr "HTTPS 端口"
@@ -3198,26 +3174,6 @@ msgid ""
"overruled by user-defined categories.</i>"
msgstr "存储完成且已完全处理的下载数据的位置。<br /><i>可以通过用户定义分类额外调整。</i>"
#: sabnzbd/skintext.py
msgid "Minimum Free Space for Completed Download Folder"
msgstr ""
#: sabnzbd/skintext.py
msgid "Will not work if a category folder is on a different disk."
msgstr ""
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "自动续传"
#: sabnzbd/skintext.py
msgid ""
"Downloading will automatically resume if the minimum free space is available"
" again.<br />Applies to both the Temporary and Complete Download Folder.<br "
"/>Checked every few minutes."
msgstr ""
#: sabnzbd/skintext.py
msgid "Permissions for completed downloads"
msgstr "完成下载权限"
@@ -3645,6 +3601,11 @@ msgid ""
"(Optionally with hh:mm)"
msgstr "您的 ISP 会在每月或每周的哪天 (1=星期一) 重置配额? (可选加上 hh:mm)"
#. Auto-resume download on the reset day
#: sabnzbd/skintext.py
msgid "Auto resume"
msgstr "自动续传"
#: sabnzbd/skintext.py
msgid "Should downloading resume after the quota is reset?"
msgstr "配额重置后是否自动续传下载?"
@@ -3796,21 +3757,6 @@ msgstr "密码"
msgid "Timeout"
msgstr "超时"
#: sabnzbd/skintext.py
msgid "Account expiration date"
msgstr ""
#: sabnzbd/skintext.py
msgid "Warn 5 days in advance of account expiration date."
msgstr ""
#: sabnzbd/skintext.py
msgid ""
"Quota for this account, counted from the time it is set. In bytes, "
"optionally follow with K,M,G.<br />Warn when it reaches 0, checked every few"
" minutes."
msgstr ""
#. Server's retention time in days
#: sabnzbd/skintext.py
msgid "Retention time"
@@ -3902,14 +3848,6 @@ msgstr "请求文章之前发送 group 命令。"
msgid "Personal notes"
msgstr "注释"
#: sabnzbd/skintext.py
msgid "Article availability"
msgstr ""
#: sabnzbd/skintext.py
msgid "%f% available of %d requested articles"
msgstr ""
#. Config->Scheduling
#: sabnzbd/skintext.py
msgid "Add Schedule"
@@ -4655,12 +4593,12 @@ msgid "Date format"
msgstr "日期格式"
#: sabnzbd/skintext.py
msgid "Extra queue columns"
msgstr ""
msgid "Extra queue column"
msgstr "队列显示更多列"
#: sabnzbd/skintext.py
msgid "Extra history columns"
msgstr ""
msgid "Extra history column"
msgstr "额外的历史记录列"
#: sabnzbd/skintext.py
msgid "page"
@@ -4742,6 +4680,10 @@ msgstr "隐藏/显示已完成文件"
msgid "View Script Log"
msgstr "查看脚本日志"
#: sabnzbd/skintext.py
msgid "Update Available!"
msgstr "有更新可用!"
#: sabnzbd/skintext.py
msgid ""
"LocalStorage (cookies) are disabled in your browser, interface settings will"
@@ -4756,14 +4698,14 @@ msgstr "你可能会喜欢一些 Glitter 的(新)功能!"
msgid "Compact layout"
msgstr "精简外观"
#: sabnzbd/skintext.py
msgid "Always use full screen width"
msgstr ""
#: sabnzbd/skintext.py
msgid "Tabbed layout <br/>(separate queue and history)"
msgstr "标签化外观 <br/>(分别显示队列与历史记录)"
#: sabnzbd/skintext.py
msgid "Speed"
msgstr "速度"
#: sabnzbd/skintext.py
msgid "Confirm Queue Deletions"
msgstr "确认队列删除"

View File

@@ -1,11 +1,11 @@
#
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: team@sabnzbd.org\n"
"Language-Team: SABnzbd <team@sabnzbd.org>\n"
@@ -13,59 +13,55 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "The installer only supports 64-bit Windows, use the standalone version to run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid "The installer only supports Windows 8.1 and above, use the standalone legacy version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "You cannot overwrite an existing installation. \\n\\nClick `OK` to remove the previous version or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr ""

View File

@@ -1,10 +1,10 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Language-Team: Czech (https://www.transifex.com/sabnzbd/teams/111101/cs/)\n"
"MIME-Version: 1.0\n"
@@ -13,67 +13,61 @@ msgstr ""
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr ""

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Danish (https://www.transifex.com/sabnzbd/teams/111101/da/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Vis udgivelsesbemærkninger"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Støt projektet, donér!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Luk venligst \"SABnzbd.exe\" først"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Dette vil afinstallere SABnzbd fra dit system"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Kør ved opstart"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Skrivebordsikon"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "NZB-filtilknytning"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Slet program"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Slet indstillinger"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -81,6 +75,6 @@ msgstr ""
"fjerne den tidligere version eller `Annuller` for at annullere "
"opgraderingen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Dine indstillinger og data vil blive bevaret."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: German (https://www.transifex.com/sabnzbd/teams/111101/de/)\n"
@@ -17,19 +17,19 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Versionshinweise anzeigen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Bitte unterstützen Sie das Projekt durch eine Spende!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Schliessen Sie bitte zuerst \"SABnzbd.exe\"."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
@@ -38,7 +38,7 @@ msgstr ""
"Aufgrund von Änderungen am SABnzbd Windows Service ab Version 3.0.0 ist es nötig,\\nden Windows Service neu zu installieren.\\n\\n\r\n"
"Drücke `OK` um den existierenden Service zu löschen oder `Abbrechen` um dieses Upgrade abzubrechen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
@@ -46,37 +46,31 @@ msgstr ""
"Der Installer unterstützt nur Windows 64-bit. Benutze die Standalone Version"
" für Windows 32-bit."
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Dies entfernt SABnzbd von Ihrem System"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Beim Systemstart ausführen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Desktop-Symbol"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Mit NZB-Dateien verknüpfen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Programm löschen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Einstellungen löschen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -85,6 +79,6 @@ msgstr ""
"Sie 'OK', um die vorherige Version zu entfernen oder 'Abbrechen' um die "
"Aktualisierung abzubrechen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Ihre Einstellungen und Daten bleiben erhalten."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -8,7 +8,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Ester Molla Aragones <moarages@gmail.com>, 2020\n"
"Language-Team: Spanish (https://www.transifex.com/sabnzbd/teams/111101/es/)\n"
@@ -18,19 +18,19 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Mostrar notas de la versión"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "¡Apoye el proyecto, haga una donación!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Por favor cierre primero \"SABnzbd.exe\""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
@@ -41,7 +41,7 @@ msgstr ""
"en \"OK\" para eliminar los servicios existentes o \"Cancelar\" para "
"cancelar la actualización."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
@@ -49,37 +49,31 @@ msgstr ""
"El instalador solo admite Windows 64-bit, utilice la versión independiente "
"para ejecutar Windows 32-bit."
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Esto desinstalará SABnzbd de su sistema"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Ejecutar al inicio"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Icono del escritorio"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Asociación de archivos NZB"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Eliminar programa"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Eliminar Ajustes"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -87,6 +81,6 @@ msgstr ""
"No es posible sobrescribir una instalación existente. \\n\\nPresione `OK' "
"para quitar la versión anterior o 'Cancelar' para cancelar la actualización."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Tus ajustes y datos se mantendrán intactos."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Finnish (https://www.transifex.com/sabnzbd/teams/111101/fi/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Näytä julkaisutiedot"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Tue projektia, lahjoita!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Ole hyvä ja sulje \"SABnzbd.exe\" ensin"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Tämä poistaa SABnzbd:n tietokoneestasi"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Suorita käynnistyksen yhteydessä"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Työpöydän kuvake"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "NZB tiedostosidos"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Poista sovellus"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Poista asetukset"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -80,6 +74,6 @@ msgstr ""
"Et voi asentaa tätä vanhan asennuksen päälle. \\n\\nPaina `OK` poistaaksesi "
"edellisen version tai paina `Peruuta` peruuttaaksesi tämän päivityksen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Asetuksiasi ja tietojasi ei poisteta."

View File

@@ -1,16 +1,15 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2020
# Fred L <88com88@gmail.com>, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Fred L <88com88@gmail.com>, 2021\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: French (https://www.transifex.com/sabnzbd/teams/111101/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,19 +17,19 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Afficher les notes de version"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Soutenez le projet, faites un don !"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Merci de fermer \"SABnzbd.exe\" avant l'installation"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
@@ -40,7 +39,7 @@ msgstr ""
" réinstaller le service SABnzbd. \\n\\nCliquez sur 'OK' pour supprimer les "
"services existants ou sur 'Annuler' pour annuler cette mise à niveau."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
@@ -48,40 +47,31 @@ msgstr ""
"Le programme d'installation ne prend en charge que Windows 64 bits, utilisez"
" la version standalone pour l'exécuter sur Windows 32 bits."
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
"Le programme d'installation ne prend en charge que Windows 8.1 et supérieur,"
" utilisez la version autonome legacy pour les versions antérieures de "
"Windows."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Ceci désinstallera SABnzbd de votre système"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Lancer au démarrage"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Icône sur le Bureau"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Association des fichiers NZB"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Supprimer le programme"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Supprimer les paramètres"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -90,6 +80,6 @@ msgstr ""
"pour supprimer la version précédente ou `Annuler` pour annuler cette mise à "
"niveau."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Vos paramètres et données seront conservés."

View File

@@ -1,16 +1,15 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2020
# ION, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: ION, 2021\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Hebrew (https://www.transifex.com/sabnzbd/teams/111101/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,19 +17,19 @@ msgstr ""
"Language: he\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "הראה הערות שחרור"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "תמוך במיזם, תרום!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "אנא סגור את \"SABnzbd.exe\" תחילה"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
@@ -40,7 +39,7 @@ msgstr ""
"השירות SABnzbd. \\n\\nלחץ `אשר` כדי להסיר את השירותים הקיימים או `בטל` כדי "
"לבטל שדרוג זה."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
@@ -48,39 +47,31 @@ msgstr ""
"המתקין תומך רק במערכת Windows מסוג 64־סיביות, השתמש בגרסה העצמאית כדי להריץ "
"על Windows מסוג 32־סיביות."
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
"המתקין תומך רק במערכת Windows 8.1 ומעלה, השתמש בגרסה העצמאית המיושנת כדי "
"להריץ על גרסת Windows ישנה יותר."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "זה יסיר את SABnzbd ממערכתך"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "הפעלה בהזנק"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "צלמית שולחן עבודה"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "NZB שיוך קבצי"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "מחק תוכנית"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "מחק הגדרות"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -88,6 +79,6 @@ msgstr ""
"אינך יכול לדרוס התקנה קיימת.\\n\\nלחץ על `אישור` כדי להסיר את הגרסה הקודמת "
"או על `ביטול` כדי לבטל שדרוג זה."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "ההגדרות והנתונים שלך יישמרו."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/sabnzbd/teams/111101/nb/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Vis versjonsmerknader"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Støtt prosjektet, donèr!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Vennligst lukk \"SABnzbd.exe\" først"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Dette vil avinstallere SABnzbd fra ditt system"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Kjør ved oppstart"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Skrivebordsikon"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "NZB-filassosiering"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Fjern program"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Slett innstillinger"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -81,6 +75,6 @@ msgstr ""
" fjerne tidligere installasjon, eller 'Avbryt' for å avbryte denne "
"oppgraderingen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Dine innstillinger og data vil bli tatt vare på."

View File

@@ -1,15 +1,15 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
# Safihre <safihre@sabnzbd.org>, 2021
# Safihre <safihre@sabnzbd.org>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2021\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Dutch (https://www.transifex.com/sabnzbd/teams/111101/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,19 +17,19 @@ msgstr ""
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Toon opmerkingen bij deze uitgave"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Steun het project, doneer!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Sluit \"SABnzbd.exe\" eerst af"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
@@ -38,7 +38,7 @@ msgstr ""
"De SABnzbd Windows Service is aangepast in SABnzbd 3.0.0. Hierdoor zal je de service opnieuw moeten installeren.\\n\\n\n"
"Klik `Ok` om de bestaande services te verwijderen of `Annuleren` om te stoppen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
@@ -46,40 +46,31 @@ msgstr ""
"Alleen 64-bit wordt ondersteund in de installer, download de standalone "
"versie om SABnzbd uit te voeren op 32-bit Windows."
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
"Alleen Windows 8.1 en nieuwer worden ondersteund door de installer, download"
" de standalone legacy versie om SABnzbd uit te voeren op oudere versies van "
"Windows."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Dit verwijdert SABnzbd van je systeem"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Starten met Windows"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Bureaubladpictogram"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "NZB-bestanden openen met SABnzbd"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Programma verwijderen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Verwijder alle instellingen"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -87,6 +78,6 @@ msgstr ""
"U kunt geen bestaande installatie overschrijven.\\n\\nKlik op `OK` om de "
"vorige versie te verwijderen of op `Annuleren` om te stoppen."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Je instellingen en bestanden blijven behouden."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Polish (https://www.transifex.com/sabnzbd/teams/111101/pl/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Pokaż informacje o wydaniu"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Wspomóż projekt!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Najpierw zamknij SABnzbd.exe"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "To odinstaluje SABnzbd z systemu"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Uruchom wraz z systemem"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Ikona pulpitu"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "powiązanie pliku NZB"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Usuń program"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Skasuj obecne ustawienia"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -80,6 +74,6 @@ msgstr ""
"Nie można nadpisać istniejącej instalacji. \\n\\n Naciśnij `OK`, aby usunąć "
"poprzednia wersję lub `Anuluj` aby anulować aktualizację."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Twoje ustawienia i dane zostaną zachowane."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/sabnzbd/teams/111101/pt_BR/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Mostrar Notas de Lançamento"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Apoie o projeto. Faça uma doação!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Por favor, feche \"SABnzbd.exe\" primeiro"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Isso irá desinstalar SABnzbd de seu sistema"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Executar na inicialização"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Ícone na Área de Trabalho"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Associação com Arquivos NZB"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Excluir o Programa"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Apagar Configurações"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -80,6 +74,6 @@ msgstr ""
"Você não pode substituir uma instalação existente. \\n\\nClique `OK` para "
"remover a versão anterior ou `Cancelar` para cancelar esta atualização."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Suas configurações e os dados serão preservados."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Romanian (https://www.transifex.com/sabnzbd/teams/111101/ro/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Arată Notele de Publicare"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Susţine proiectul, Donează!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Închideţi mai întâi \"SABnzbd.exe\""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Acest lucru va dezinstala SABnzbd din sistem"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Executare la pornire"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Icoană Desktop"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Asociere cu Fişierele NZB"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Şterge Program"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Ştergeţi Setări"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -80,6 +74,6 @@ msgstr ""
"Nu puteți suprascrie instalarea existentă. \\n\\nClick `OK` pentru a elimina"
" versiunea anterioară sau `Anulare` pentru a anula actualizarea."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Setările şi informaţiile vor fi salvate."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Russian (https://www.transifex.com/sabnzbd/teams/111101/ru/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Показать заметки о выпуске"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Поддержите проект. Сделайте пожертвование!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Завершите сначала работу процесса SABnzbd.exe"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Приложение SABnzbd будет удалено из вашей системы"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Запускать вместе с системой"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Значок на рабочем столе"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Ассоциировать с файлами NZB"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Удалить программу"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Удалить параметры"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -81,6 +75,6 @@ msgstr ""
"удалить предыдущую версию, нажмите кнопку «ОК». Чтобы отменить обновление, "
"нажмите кнопку «Отмена»."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Ваши параметры и данные будут сохранены."

View File

@@ -1,5 +1,5 @@
# SABnzbd Translation Template file NSIS
# Copyright 2011-2021 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
# Translators:
@@ -7,7 +7,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: SABnzbd-3.2.0-develop\n"
"Project-Id-Version: SABnzbd-3.0.0-develop\n"
"PO-Revision-Date: 2020-06-27 15:56+0000\n"
"Last-Translator: Safihre <safihre@sabnzbd.org>, 2020\n"
"Language-Team: Serbian (https://www.transifex.com/sabnzbd/teams/111101/sr/)\n"
@@ -17,62 +17,56 @@ msgstr ""
"Language: sr\n"
"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);\n"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Show Release Notes"
msgstr "Прикажи белешке о издању"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Support the project, Donate!"
msgstr "Подржите пројекат, дајте добровољан прилог!"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Please close \"SABnzbd.exe\" first"
msgstr "Прво затворите „SABnzbd.exe“"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The SABnzbd Windows Service changed in SABnzbd 3.0.0. \\nYou will need to "
"reinstall the SABnzbd service. \\n\\nClick `OK` to remove the existing "
"services or `Cancel` to cancel this upgrade."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"The installer only supports 64-bit Windows, use the standalone version to "
"run on 32-bit Windows."
msgstr ""
#: builder/win/NSIS_Installer.nsi
msgid ""
"The installer only supports Windows 8.1 and above, use the standalone legacy"
" version to run on older Windows version."
msgstr ""
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "This will uninstall SABnzbd from your system"
msgstr "Ово ће уклонити САБнзбд са вашег система"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Run at startup"
msgstr "Покрени са системом"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Desktop Icon"
msgstr "Иконица радне површи"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "NZB File association"
msgstr "Придруживање НЗБ датотеке"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Program"
msgstr "Обриши програм"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Delete Settings"
msgstr "Обриши подешавања"
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid ""
"You cannot overwrite an existing installation. \\n\\nClick `OK` to remove "
"the previous version or `Cancel` to cancel this upgrade."
@@ -80,6 +74,6 @@ msgstr ""
"Не можете да препишете постојећу инсталацију. \\n\\nПритисните „У реду“ да "
"уклоните претходно издање или „Откажи“ да поништите ову надоградњу."
#: builder/win/NSIS_Installer.nsi
#: NSIS_Installer.nsi
msgid "Your settings and data will be preserved."
msgstr "Ваша подешавања и подаци биће сачувани."

Some files were not shown because too many files have changed in this diff Show More